$(document).ready(function(){
	//disable context menu
	//================
	$(document).bind("contextmenu",function(e){  
		 return false;  
	});
	
	//=========
	//Main Menu
	//=========
	
	//open the menu
	$('#explore').mouseenter(function(){
		if ($('#menu.mainMenu:animated')){
			$('#menu.mainMenu').stop();
			$('#menu.mainMenu').hide();
		}
		$('#menu.mainMenu').fadeIn(150);
		//$('#menu.mainMenu').fadeTo('fast', 1);
	});
	
	

	//close the menu
	$('#mainMenuContainer').mouseleave(function(){
		
		//delay when mouse off the menu
		//$(this).oneTime(250, function() {
				//close any sub menus
				$('#menu li').each(function(){
					$(this).siblings().find('ul:visible').hide();													
				});
			
				//close the menu itself	
				$('#menu').hide();
	//	});

	
	});
	
	
	//setup the menu to expand on mouseenter
	$('#menu li').each(function(){
																
			//setup the expansion
			$(this).mouseenter(function(){
					//hide any open submenus first ...
					$(this).siblings().find('ul:visible').hide();
					//... then show the submenu under the mouse
					$(this).find('ul:first').fadeIn(150);
			});
			
			$(this).children('ul.subMenu').parent('li').children('a').addClass('bgArrow');
	
	});


	//Footer menu
	$('#languageSelected').click(function(){
		$('#languagePopUp').toggle();
	});


});
