$(document).ready(function() {
		
	//Get Selected Nav
	$("ul.highlightpages li#"+section).addClass("current");//Highlight the users current location
	
	$("#banner").fade({
			pause: 6000,
			speed:1000,
			loop:true
		});	

	
	if($.browser.msie && $.browser.version=="6.0"){
		//$("#advanced").hide();
		$('ul.highlightpages li').mouseenter(function(evt){
			$('ul', this).css('display', 'block');		
		});
		$('ul.highlightpages ul li').mouseleave(function(evt){			
			//alert(elem);
			$('ul', this).css('display', 'none');	
		});		
	}
	

});
