$(document).ready(function(){
	$(".formtable").find(":text,:password").each(function(){
		$(this).focus(function(){
			$(this).addClass("hover");
			$(this).next(".lx").css({color:'#000000'})
			}
		).blur(function(){
			$(this).removeClass("hover");
			$(this).next(".lx").css({color:'#666'})
		})
	})
});
function RefreshImage(valImageId) {
	var objImage = document.images[valImageId];
	if (objImage == undefined) {
		return;
	}
	var now = new Date();
	objImage.src = objImage.src.split('?')[0] + '?x=' + now.toUTCString();
}
