$(document).ready(function() {
	$(":text") .addClass("textinput");
});
$(document).ready(function() {
	$(":password") .addClass("textinput");
});

$(document).ready(function(){
	$(" .clo dl").hover(function(){//当鼠标放上时的特效
			 $(this).css("background-color","#DFF3FF");
		},
		function(){//当鼠标移出时的操作
			$(this).css("background-color","transparent"); //鼠标移出时取消背景色
		}
		)
}); 

$(document).ready(function(){
	$(" .comment").hover(function(){//当鼠标放上时的特效
			 $(this).css("background-color","#DFF3FF");
		},
		function(){//当鼠标移出时的操作
			$(this).css("background-color","transparent"); //鼠标移出时取消背景色
		}
		)
}); 


$(document).ready(function(){
	$(" .comment_bg").hover(function(){//当鼠标放上时的特效
			 $(this).css("background","url(../images/xxx.gif)");
		},
		function(){//当鼠标移出时的操作
			$(this).css("background","background: url(../images/comment_bg.gif) no-repeat right bottom;"); //鼠标移出时取消背景色
		}
		)
}); 

