$(document).ready(function(){
	$('#menuCidadesLista ul li a img').hover(function(){
		$(this).stop().animate({
			opacity: 0							   
		}, 200)						
	}, function(){
		$(this).stop().animate({
			opacity: 1							   
		}, 200)	
	});
});