function pwdFocus() { 
	$('#fakepassword').hide(); 
	$('#realpassword').show(); 
	$('#realpassword').focus(); 
} 

function pwdBlur() { 
	if ($('#realpassword').attr('value') == '') { 
		$('#realpassword').hide(); 
		$('#fakepassword').show(); 
	} 
} 
$(function(){
	var currentUser = $('form .username').val();
	var titleUser = $('form .username').attr('title');
	$('form .username').blur();
	if(currentUser==''){
		$('form .username').val(titleUser);
		$('form .username').focus(function(){
			$(this).val('');
			$(this).css('color','#000000');
		});
	}
	$('form .username').blur(function(){
		if($(this).val()==''){
			$(this).val(titleUser);	
			$(this).css('color','#999999');
		}
	});
	$('#fakepassword').focus(function(){
		pwdFocus();
	});
	$('#realpassword').blur(function(){
		pwdBlur();
	});
});
