$(document).ready( function() {
	
	$("input").focus( function() {
		if( $(this).val() == "username" || $(this).val() == "password" )
		{
			$(this).val("");	
			$(this).css("color","#000");
		}
	});
							
	$("input").blur( function() {
		if( $(this).val() == "" )
		{
			$(this).val( $(this).attr("name") );	
			$(this).css("color","#555");
		}
	});
							
});