$(function () { //open jQuery
			

			$("input[type='submit']").addClass("btn");
			$("input[type='password']").addClass("password");
			$("input[type='text']").addClass("text");
			$("form p").addClass("clearfix");
			
			$("input.text, input.password").focus(function() {
			val = $(this).attr("value");
		
			$(this).attr("value","")
			  	 .blur(function(){
								 
				if ($(this).attr("value")==""){
					$(this).attr("value",val);
					}
				});
			});
			

}); //close jQuery