jQuery.noConflict();
	(function($) { 
		$(document).ready(function(){
			$(".paginador ul li:last").css({display: 'none'});
			
			$(".menuInt ul li.abre_submenu").mouseout(function(){
				$(this).children(".subMneuInt").hide();
				return false;
			}).mouseover(function(){
				$(this).children(".subMneuInt").show();
				return false;
			});
			
			$('.subMneuInt').hover(function(){
				$(this).next("a").toggleClass("hover");
			}, function() {
				$(this).next("a").toggleClass("hover");
				$(this).hide();
		});
	});
})(jQuery);

