$(document).ready(function(){
	$(".hover").hover(
		function(){
			$(this).stop();
			$(this).fadeTo(  1,0.2)
			$(this).fadeTo(800,0.5)
		},
		function(){
			$(this).stop();
			$(this).fadeTo(500,1.0)
		}
	);
});

