// JavaScript Document
var bname = navigator.appName;
var bver = parseInt(navigator.appVersion);

function navover(n)
{
	if (bname == "Netscape" && bver < 5) 
	{
		window.document.layers['' +layername].visibility="show";
	}
	else if (bname == "Microsoft Internet Explorer" && bver < 5) 
	{
		document.all['nav'+n].style.backgroundColor="#E54F1E";
	}
	else 
	{
		document.getElementById('nav'+n).style.backgroundColor="#E54F1E";
	}
}

function navout(n)
{
	if (bname == "Netscape" && bver < 5) 
	{
		window.document.layers['' +layername].visibility="show";
	}
	else if (bname == "Microsoft Internet Explorer" && bver < 5) 
	{
		document.all['nav'+n].style.backgroundColor="";
	}
	else 
	{
		document.getElementById('nav'+n).style.backgroundColor="";
	}
}

function navoutact(n)
{
	if (bname == "Netscape" && bver < 5) 
	{
		window.document.layers['' +layername].visibility="show";
	}
	else if (bname == "Microsoft Internet Explorer" && bver < 5) 
	{
		document.all['nav'+n].style.backgroundColor="#E54F1E";
	}
	else 
	{
		document.getElementById('nav'+n).style.backgroundColor="#E54F1E";
	}
}

function buttonover(n)
{
	if (bname == "Netscape" && bver < 5) 
	{
		window.document.layers['' +layername].visibility="show";
	}
	else if (bname == "Microsoft Internet Explorer" && bver < 5) 
	{
		document.all['button'+n].style.backgroundColor="#5E5957";
	}
	else 
	{
		document.getElementById('button'+n).style.backgroundColor="#5E5957";
	}
}

function buttonout(n)
{
	if (bname == "Netscape" && bver < 5) 
	{
		window.document.layers['' +layername].visibility="show";
	}
	else if (bname == "Microsoft Internet Explorer" && bver < 5) 
	{
		document.all['button'+n].style.backgroundColor="#E54F1E";
	}
	else 
	{
		document.getElementById('button'+n).style.backgroundColor="#E54F1E";
	}
}

function buttonoutact(n)
{
	if (bname == "Netscape" && bver < 5) 
	{
		window.document.layers['' +layername].visibility="show";
	}
	else if (bname == "Microsoft Internet Explorer" && bver < 5) 
	{
		document.all['button'+n].style.backgroundColor="#5E5957";
	}
	else 
	{
		document.getElementById('button'+n).style.backgroundColor="#5E5957";
	}
}
