$(function over(){
	$(".over").hover(
		function(){$(this).fadeTo(150, 0);return false;},
    function(){$(this).fadeTo(300, 1);return false;}
		);
});

