jQuery.noConflict();

jQuery(document).ready(function() {
					   
	jQuery("#menu li").hover(function() {
		jQuery('a:first',this).addClass("active");
		jQuery('ul:first',this).css('display','block');		
	}, function() {	
		jQuery('a:first',this).removeClass("active");
		jQuery('ul:first',this).css('display','none');		
	});
	
	jQuery("#menu_nw li").hover(function() {
		jQuery('a:first',this).addClass("active");
		jQuery('ul:first',this).css('display','block');		
	}, function() {	
		jQuery('a:first',this).removeClass("active");
		jQuery('ul:first',this).css('display','none');		
	});	
	
	// Acesso Rápido
	
	jQuery("#quickNav").click(function() {
		jQuery("#box-acesso").fadeIn("slow");
	});
	
		jQuery("#box-acesso").hover(function() {
			/**/
		}, function(){
			jQuery(this).fadeOut("slow");
		});
	
	// Pop-rss
	
	jQuery(".rss").click(function() {
		jQuery("#pop").fadeIn("5000");
	});
	
	jQuery("#pop .close").click(function() {
		jQuery("#pop").fadeOut("5000");
	});
	
});

	
