// JavaScript Document
function init()
{
	var sPath = window.location.pathname;
	var name = sPath.substring(sPath.lastIndexOf('/') + 1);
	switch(name)
	{
		case 'index.php':
			document.getElementById('hypHome').style.color = "#59120E";
			document.getElementById('hypAbout').style.color = "#b3b3b3";
			document.getElementById('hypLinks').style.color = "#b3b3b3";
			document.getElementById('hypContact').style.color = "#b3b3b3";
			break;
		case 'about.php':
			document.getElementById('hypHome').style.color = "#b3b3b3";
			document.getElementById('hypAbout').style.color = "#59120E";
			document.getElementById('hypLinks').style.color = "#b3b3b3";
			document.getElementById('hypContact').style.color = "#b3b3b3";
			break;
		case 'links.php':
			document.getElementById('hypHome').style.color = "#b3b3b3";
			document.getElementById('hypAbout').style.color = "#b3b3b3";
			document.getElementById('hypLinks').style.color = "#59120E";
			document.getElementById('hypContact').style.color = "#b3b3b3";
			break;
		case 'contact.php':
			document.getElementById('hypHome').style.color = "#b3b3b3";
			document.getElementById('hypAbout').style.color = "#b3b3b3";
			document.getElementById('hypLinks').style.color = "#b3b3b3";
			document.getElementById('hypContact').style.color = "#59120E";
			break;	
		case '':
			document.getElementById('hypHome').style.color = "#59120E";
			document.getElementById('hypAbout').style.color = "#b3b3b3";
			document.getElementById('hypLinks').style.color = "#b3b3b3";
			document.getElementById('hypContact').style.color = "#b3b3b3";
			break;		
		default:
			document.getElementById('hypHome').style.color = "#b3b3b3";
			document.getElementById('hypAbout').style.color = "#b3b3b3";
			document.getElementById('hypLinks').style.color = "#b3b3b3";
			document.getElementById('hypContact').style.color = "#b3b3b3";
			break;
	}
}

function menuChanged(name)
{
	//var sPath = window.location.pathname;
	//var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
	switch(name)
	{
		case 'home':
			document.getElementById('hypHome').style.color = "#59120E";
			document.getElementById('hypAbout').style.color = "#b3b3b3";
			document.getElementById('hypLinks').style.color = "#b3b3b3";
			document.getElementById('hypContact').style.color = "#b3b3b3";

			
			document.getElementById('divHome').style.display = "inline";
			document.getElementById('divAbout').style.display = "none";
			document.getElementById('divLinks').style.display = "none";
			document.getElementById('divContact').style.display = "none";
			document.getElementById('divAbstact').style.display = "none";
			break;
		case 'about':
			document.getElementById('hypHome').style.color = "#b3b3b3";
			document.getElementById('hypAbout').style.color = "#59120E";
			document.getElementById('hypLinks').style.color = "#b3b3b3";
			document.getElementById('hypContact').style.color = "#b3b3b3";

			document.getElementById('divHome').style.display = "none";
			document.getElementById('divAbout').style.display = "inline";
			document.getElementById('divLinks').style.display = "none";
			document.getElementById('divContact').style.display = "none";		
			document.getElementById('divAbstact').style.display = "none";

			break;
		case 'links':
			document.getElementById('hypHome').style.color = "#b3b3b3";
			document.getElementById('hypAbout').style.color = "#b3b3b3";
			document.getElementById('hypLinks').style.color = "#59120E";
			document.getElementById('hypContact').style.color = "#b3b3b3";
	
			document.getElementById('divHome').style.display = "none";
			document.getElementById('divAbout').style.display = "none";
			document.getElementById('divLinks').style.display = "inline";
			document.getElementById('divContact').style.display = "none";	
			document.getElementById('divAbstact').style.display = "none";

			break;
		case 'contact':
			document.getElementById('hypHome').style.color = "#b3b3b3";
			document.getElementById('hypAbout').style.color = "#b3b3b3";
			document.getElementById('hypLinks').style.color = "#b3b3b3";
			document.getElementById('hypContact').style.color = "#59120E";
			
			document.getElementById('divHome').style.display = "none";
			document.getElementById('divAbout').style.display = "none";
			document.getElementById('divLinks').style.display = "none";
			document.getElementById('divContact').style.display = "inline";		
			document.getElementById('divAbstact').style.display = "none";

			break;	
		case 'abstract':
			document.getElementById('hypHome').style.color = "#b3b3b3";
			document.getElementById('hypAbout').style.color = "#b3b3b3";
			document.getElementById('hypLinks').style.color = "#b3b3b3";
			document.getElementById('hypContact').style.color = "#b3b3b3";
			
			document.getElementById('divHome').style.display = "none";
			document.getElementById('divAbout').style.display = "none";
			document.getElementById('divLinks').style.display = "none";
			document.getElementById('divContact').style.display = "none";		
			document.getElementById('divAbstract').style.display = "inline";
			
			break;
	}
}

