$(document).ready(function(){
 
$(".main").hover(function(){
		$(this).fadeTo(150, 1.0); // This should set the opacity to 100% on hover
	},function(){
   		$(this).fadeTo(150, 0.25); // This should set the opacity back to 60% on mouseout
	});
});