jQuery(document).ready(function(){
			

jQuery(".footer img").animate({opacity:"0.35"}, 0);

jQuery(".footer img").hover(function(){
	jQuery(this).animate({opacity:"1"}, 500);
	}, function() {
	jQuery(this).animate({opacity:"0.35"}, 500);
});



});
