$(document).ready(function() {
$('img.xmg').css('opacity', 0.0).hover(function(){
$(this).stop().animate({opacity: 1.0}, 770);
}, function(){
$(this).stop().animate({opacity: 0.0}, 900);
});
	
});
