
$(function(){

//文本框提示文字
	$(".loginTable input[type=text]").css("color","#9f9f9f");
	$(".loginTable input[type=text]").focus(function(){
		tmptxt = $(this).attr("title");
		if(tmptxt){
			nowtxt = $(this).val();
			if(tmptxt==nowtxt){
				$(this).val("");
				$(this).css("color","#1d1d1d");
			}
		}
	}).blur(function(){
		if($(this).val()==""){
			$(this).val(tmptxt);
			$(this).css("color","#9f9f9f");
		}
	})
	
})