jQuery(document).ready(function($) {

	/* Login Magic */
	$('#username').val('enter your username');

	$('#username').focus(function(){
		var $t = $(this);
		var v = $t.val();
		if ( v == 'enter your username')
			$t.val('');
		else
			$t.select();
	});
	
	$('#username').blur(function(){
		var $t = $(this);
		var v = $t.val();
		if ( v == '')
			$t.val('enter your username');
	});

	$('#password').after('<div id="password-label">enter your password</div>');
	
	$('#password').focus(function(){
		$('#password-label').hide();
	});

	$('#password-label').click(function(){
		$('#password-label').hide();
		$('#password').select();	
	});
	
	$('#password').blur(function(){
		var $t = $(this);
		var v = $t.val();
		if ( v == '')
			$('#password-label').show();
	});

});
