function active_nav()
{

	pageloc = new Array();
	pageloc2 = new Array();
	
	var page = document.location.href //Set page to the url of the current page

	if (page.indexOf("video.php")!=-1)
	{
	var pageloc = page.split("/");
	var pageloc2 = pageloc[pageloc.length-1].split(".");
	document.getElementById(pageloc2[0]).className = "active_nav_attribute";
	}
	else
	{
	var pageloc = page.split("gallery/");
	var pageloc2 = pageloc[1].split("/");
	document.getElementById(pageloc2[0]).className = "active_nav_attribute";
	}
	/*for(x=0; x < pageloc.length; x++)
	{
		pageloc2[x] = pageloc[x].split("=")[1];
	}
	
	for(x=0; x < pageloc2.length; x++)
	{
		if (document.getElementById(pageloc2[x]))
		{
			document.getElementById(pageloc2[x]).className = "active_nav_attribute";
		}
	}*/	

}

window.onload = active_nav;

/*function active_nav()
{
	
	pageloc = new Array();

	var page = document.location.href //Set page to the url of the current page

	if (page.indexOf("&")==-1)
	{
	var pageloc = page.split("?");
	
	var pageloc2 = pageloc[1].split("=");

	document.getElementById(pageloc2[1]).className = "gallery_active_nav";
	}
	else
	{
	var pageloc = page.split("?");
	
	var pageloc2 = pageloc[1].split("&");

	var pageloc3 = pageloc2[0].split("=");
	
	document.getElementById(pageloc3[1]).className = "gallery_active_nav";	
	}
		
}*/
