function showNac() {
	$("#equalInt").hide(0);
	$("#equalNac").fadeIn(500);
	$("#equalNacBut").css({opacity:1});
	$("#equalIntBut").css({opacity:.3});
}

function showInt() {
	$("#equalNac").hide(0);
	$("#equalInt").fadeIn(500);
	$("#equalNacBut").css({opacity:.3});
	$("#equalIntBut").css({opacity:1});
}

jQuery(function(){
	jQuery('ul.sf-menu').superfish({ 
            delay:       0,                            // one second delay on mouseout 
            animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
            speed:       'fast',                          // faster animation speed 
            autoArrows:  false,                           // disable generation of arrow mark-up 
            dropShadows: true                            // disable drop shadows 
        });

});




$(document).ready(function(){
	
	$("#equalInt").hide(0);
	$("#equalIntBut").css({opacity:.3});

	$("#equalIntBut").click(showInt);
	$("#equalNacBut").click(showNac);
	
		
});

