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

