$(document).ready(function(){	
	
	
	//Set here states of nested posts
	var url= window.location.href.split("/");
	var urlLength = url.length;
	var newurl = urlLength -1//;
	url= url[newurl];
	
	if(url =="" || url =="/" || url =="default.aspx"){
			$('#headerTop p').hide();
	}
	
	
	//If IE 6...
	if($.browser.msie && $.browser.version=="6.0"){
		$('ul#mnav li').mouseenter(function(evt){
			$('ul', this).css('display', 'block');		
		});
		$('ul#mnav li').mouseleave(function(evt){			
			$('ul', this).css('display', 'none');	
		});		
	}
	//If not IE6 then...
	else{	
		$('ul#mnav > li').each(function () { 
			$(this).addClass('js');
		});
	
		function navOver(){
			var menuId = this.id;	
			
			//alert(menuId);
				$('ul', '#'+menuId).show("slide", { direction: "up" }, 400);	
			}
			function navOut(){
			var menuId = this.id;		
				$('ul', '#'+menuId).hide("slide", { direction: "up" }, 400);
			}		
		
	 	
		var megaConfig = {interval: 200, sensitivity: 4, over: navOver, timeout: 200, out: navOut};	
		$("ul#mnav > li").hoverIntent(megaConfig);
		
		}
		
});
