//alert(location.pathname);
var highlight_id = null;

if (location.pathname == '/index.html' || location.pathname == '/' || location.pathname == '/special/microsite/openscreenproject/' )
{
	var current_loc = 'home';
}
else if (location.pathname.search(/special/))
{
	var current_loc = location.pathname.replace('/special/microsite/openscreenproject/','');	
}
else
{
	var current_loc = location.pathname.replace('.html','');
}

if(current_loc != '' && current_loc != "home" && document.domain != "www.stage.adobe.com")
{
	var split_loc = current_loc.split("/");
	var highlight_id = split_loc[1] + "_nav";
}
else if(current_loc != '' && current_loc != "home" && document.domain == "www.stage.adobe.com")
{
	var split_loc = current_loc.split("/");
	var highlight_id = split_loc[0] + "_nav";
}
else if(current_loc != '' && current_loc != "home" && document.domain == "www.adobe.com")
{
	var split_loc = current_loc.split("/");
	var highlight_id = split_loc[0] + "_nav";
}
else
{
	var split_loc = current_loc;
	var highlight_id = split_loc + "_nav";
}

document.observe('dom:loaded', function()							  
{
	if(highlight_id != null)
	{
		$(highlight_id).className = "highlight";
	}
	else
	{
		alert(highlight_id);
	}	 
}
)
