$(document).ready(function(){
		$(".forms input:text").each(function(){
			if ($(this).attr("value")=="" && $(this).attr("title").length>0 )
				$(this).attr("value", $(this).attr("title"));
		});
		
		$(".forms input:text").focus(function(){
			if ($(this).attr("value")==$(this).attr("title"))
				$(this).attr("value", "");
		});
		$(".forms input:text").blur(function(){
			if ($(this).attr("value")=="" && $(this).attr("title")!="")
				$(this).attr("value", $(this).attr("title"));
		});
		$(".forms input:password").focus(function(){
			$(".label_pass").css("display","none");
		});
		$(".forms input:password").blur(function(){
			if ($(this).attr("value")=="")
				$(".label_pass").css("display","");
		});
		$(".label_pass").click(function(){
			$(this).css("display","none");
			$(".password").focus();
		});
});
