var $j = jQuery.noConflict();

$j(function() {
	
	$j('#ImagemDestaque').ListaDestaques();
	
	$j('#MenuImagem li').hover(function() {
									
		// quando o mouse estiver em cima
		$j(this).stop().animate({paddingTop : '10px'}, 'fast', 'easeOutBounce');
	}, function() {
		// quando tirar o mouse
		if(!$j(this).is(".ativa")) {	
			$j(this).stop().animate({paddingTop : '0'}, 'fast', 'easeOutBounce');
		}
	});
	
});
