	$(document).ready(function() { 
		$(".blur-focus").find("input:text, input:password, textarea").focus(function() {     
			
			var val = $(this).attr("value");
			   
			$(this).attr("value","").blur(function(){
							   
				if (!$(this).attr("value")){
					$(this).attr("value",val);
				}
								   
			});
		});
	});