

$(document).ready(function(){

	$("img.menufade").hover(
	function() {
	$(this).stop().animate({"opacity": "1", }, "normal");

	},
	function() {
	$(this).stop().animate({"opacity": "0.6"}, "slow");
	});
 
});


