jQuery(function($) {					
	$('#username').focus(function(){ if($(this).attr("value") == "Username"){ $(this).attr("value", "");} });
	$('#username').blur(function(){ if($(this).attr("value") == ""){ $(this).attr("value", "Username");} });
	
	$('#password').focus(function(){ if($(this).attr("value") == "Password"){ $(this).attr("value", "");} });
	$('#password').blur(function(){ if($(this).attr("value") == ""){ $(this).attr("value", "Password");} });
});
