function menuLink()
{
	var link;
	var id;
}
product = new menuLink();
product.link = "/products/";
product.id = "linkproduct";
company = new menuLink();
company.link = "/products/company/";
company.id = "linkcompany";
conf = new menuLink();
conf.link = "/aboutus/conferences.aspx";
conf.id = "linkconf";
about = new menuLink();
about.link = "/aboutus/";
about.id = "linkabout";
contact = new menuLink();
contact.link = "/aboutus/contact.aspx";
contact.id = "linkcontact";

function setMenuColor()
{
	var page = window.location.href;
	var id = "";
	if(page.indexOf(product.link)>-1)
	{
		id = product.id;
	}
	if(page.indexOf(about.link)>-1)
	{
		id = about.id;
	}
	if(page.indexOf(company.link)>-1)
	{
		id = company.id;
	}
	if(page.indexOf(conf.link)>-1)
	{
		id = conf.id;
	}
	if(page.indexOf(contact.link)>-1)
	{
		id = contact.id;
	}
	
	if(document.getElementById(id))
	{
		document.getElementById(id).className="current";
	}
}
window.onload=setMenuColor;