window.onload = function recheck(){
j$(".autoF").fadeTo(1000, 0.7);
}

function chg_scimg(img_l){
j$("#sc_img_l").attr("src", img_l);
}

function chg_scimg_msg(img_l,msg){
j$("#sc_img_l").attr("src", img_l);
j$("#sc_img_msg").html(msg);
}

j$(function(){

j$(".onM").hover(
	function(){
		j$(this).fadeTo(100,0.7);
	},
	function(){
		j$(this).fadeTo(100,1);
	}
);

j$(".onMr").hover(
	function(){
		j$(this).fadeTo(100,1);
	},
	function(){
		j$(this).fadeTo(100,0.7);
	}
);

});

j$(function(){
	j$("input[@type='text'],textarea")
		.focus(function(){
			j$(this).addClass("focus");
		})
		
		.blur(function(){
			j$(this).removeClass("focus");
		});
});


