//Logos animation
$(document).ready(function(){
   $(".img").fadeTo("slow", 0.4);
   $(".img").hover(function(){
	   $(this).fadeTo("slow", 1);
   },function(){
		$(this).fadeTo("slow", 0.4);
   });
});

