/**
 *
 */
function menu_collapse ( id )
{
	// if ( $( id ).is(':visible') )
	// {
		// $( id ).slideUp( 'normal' );
	// }
	// else
	// {
		// $( id ).slideUp( 'normal' );
	// }
	
	// document.getElementById( "submenu_suites" ).style.display		= "none";
	// document.getElementById( "submenu_dining" ).style.display		= "none";
	// document.getElementById( "submenu_concierge" ).style.display	= "none";
	
	// document.getElementById( id ).style.display	= "inline";
	
	// if ( id == "submenu_concierge" )
		// return true;
	
	// return false;
}




function getURL ( uri )
{
	uri.dir = location.href.substring(0, location.href.lastIndexOf('\/'));
	uri.dom = uri.dir; 
	
	if (uri.dom.substr(0,7) == 'http:\/\/') 
		uri.dom = uri.dom.substr(7);
	
	uri.path = ''; 
	var pos = uri.dom.indexOf('\/'); 
	
	if (pos > -1) 
	{
		uri.path = uri.dom.substr(pos+1); 
		uri.dom = uri.dom.substr(0,pos);
	}
	
	uri.page = location.href.substring(uri.dir.length+1, location.href.length+1);
	pos = uri.page.indexOf('?');
	
	if (pos > -1) 
		uri.page = uri.page.substring(0, pos);
	
	pos = uri.page.indexOf('#');
	
	if (pos > -1) 
		uri.page = uri.page.substring(0, pos);
	
	uri.ext = ''; pos = uri.page.indexOf('.');
	
	if (pos > -1) 
	{
		uri.ext =uri.page.substring(pos+1); 
		uri.page = uri.page.substr(0,pos);
	}
	
	uri.file = uri.page;
	
	if (uri.ext != '') 
		uri.file += '.' + uri.ext;
		
	if (uri.file == '') 
		uri.page = 'index';
	
	uri.args = location.search.substr(1).split("?");
	
	return uri;
}

function changeColor( elem )
{
	//document.getElementById("submenu_suites").style.display="none";
	//document.getElementById("submenu_concierge").style.display="none";
	
	document.getElementById("index").style.color 		= "#9D9D9D";
	document.getElementById("suites").style.color 		= "#9D9D9D";
	document.getElementById("rates").style.color 		= "#9D9D9D";
	document.getElementById("dining").style.color 		= "#9D9D9D";
	document.getElementById("massage").style.color 		= "#9D9D9D";
	document.getElementById("skirental").style.color 	= "#9D9D9D";
	document.getElementById("functions").style.color 	= "#9D9D9D";
	document.getElementById("concierge").style.color 	= "#9D9D9D";
	document.getElementById("newsletter").style.color 	= "#9D9D9D";
	document.getElementById("contact").style.color 		= "#9D9D9D";
	
	if ( elem.id == "suites" )
	{
		document.getElementById( elem.id ).style.color = "#566703";
		
		document.getElementById("dinning").style.color = "#9D9D9D";
		document.getElementById("massagesnow").style.color = "#9D9D9D";
		//document.getElementById("location").style.color = "#9D9D9D";
	}	
	else if ( elem.id == "dinning" )
	{
		document.getElementById( elem.id ).style.color = "#566703";
		
		document.getElementById("suites").style.color = "#9D9D9D";
		document.getElementById("massagesnow").style.color = "#9D9D9D";
		//document.getElementById("location").style.color = "#9D9D9D";
	}	
	else if ( elem.id == "massagesnow" )
	{
		document.getElementById( elem.id ).style.color = "#566703";
		
		document.getElementById("suites").style.color = "#9D9D9D";
		document.getElementById("dinning").style.color = "#9D9D9D";
		//document.getElementById("location").style.color = "#9D9D9D";
	}	
	else if ( elem.id == "location" )
	{
		document.getElementById( elem.id ).style.color = "#566703";
		
		document.getElementById("suites").style.color = "#9D9D9D";
		document.getElementById("dinning").style.color = "#9D9D9D";
		document.getElementById("massagesnow").style.color = "#9D9D9D";		
	}
}

function setupMenu ( id )
{
	if ( id == "index" || id == "rates" || id == "wineshop" || id == "functions" || id == "contact" )
		document.getElementById( id ).style.color = "#566703";
	else if ( id == "a" || id == "b" || id == "c" || id == "d" || id == "e" || id == "f" || id == "amenities" )
	{
		document.getElementById("suites").style.color = "#566703";
		document.getElementById( id ).style.color = "#566703";
	}
	else if ( id == "sekkadeli" || id == "sekkadinning" || id == "makilounge" )
	{
		document.getElementById("dinning").style.color = "#566703";
		document.getElementById( id ).style.color = "#566703";
	}
	else if ( id == "karadamassage" || id == "rhythmbeatssnowsports" )
	{
		document.getElementById("massagesnow").style.color = "#566703";
		document.getElementById( id ).style.color = "#566703";
	}
	else if ( id == "gettingthere" || id == "winteractivities" || id == "springtoautumn" || id == "hotsprings" || id == "gallery" || id == "weather" || id == "villagemap" )
	{
		document.getElementById("location").style.color = "#566703";
		document.getElementById( id ).style.color = "#566703";
	}
	else
	{
		// no action yet.
	}
	
	
}


