function getMenuUrl(itemMenu){
	switch (itemMenu){
		case "home" : 
			window.open("/","_self");
			break;
		case "cultural" :
			window.open("/cultural","_self");
			break;
		case "adventurous" :
			window.open("/adventurous","_self");
			break;
		case "romantic" : 
			window.open("/romantic","_self");
			break;
		case "epicurean" :
			window.open("/epicurean","_self");
			break;
		case "fascinating" :
			window.open("/fascinating","_self");
			break;
		case "tips" :
			window.open("/tips","_self");
			break;
		default : 
			window.open("/contact-us","_self");
			break;
	}
	
}

function getBserUrl(){
	  var   appUrl; 
	  var   appUrlArray = new Array ();
	  appUrl=window.location.href;  
	  appUrlArray=appUrl.split("/");
	  appUrl = appUrlArray[3]; 
	  return appUrl;
	}
	
/*function menuLink(str){
	
		$(".menu").each(function(){
			$(this).find("li").each(function(){
				var link = this.firstChild;
				var span = link.firstChild;
				alert(link.href);
				if(str == span){
					return link.href;	
				}
			});
		});
		
}*/
