$(document).ready(function(){
						   $(".over").fadeTo("slow", 1.0); 
						   $(".over").hover(function(){
						   $(this).fadeTo("slow", 0.6); 
						   },function(){
						   $(this).fadeTo("slow", 1.0); 
						   });
						   });


