$(document).ready(function(){
	$(".overs").hover(function(){
		$(this).fadeTo("normal", 0.6);
	}, function(){
		$(this).fadeTo("fast", 1);
	});	
});
