$(document).ready(function(){
		$("#wrapper #topbar a.nav").bind("mouseenter", function() {
				$(this).prev().fadeIn(500);
			}); 
		$("#wrapper #topbar a.nav").bind("mouseleave", function() {
				$(this).prev().fadeOut(500);
			});
		
		$("#wrapper #topbar a.nav").each(function () { 
										if ( $(this).html() == pageNav ) {
					
					$(this).prev().show();
					$(this).css({color: '#f1a600'});
					$(this).unbind("mouseenter").unbind("mouseleave");
					
										}
										 });
})