function In(){ $(this).stop().fadeTo(100,1.0) }
function Out(){ $(this).stop().fadeTo(500,0.0) }
jQuery(function($){
	$("#m1").css("opacity","0").hover(In,Out);
});
