if (navigator.appName == 'Netscape') {
	document.write('<link rel="stylesheet" type="text/css" href="./css/asg_net.css" />');
} else	{
	document.write('<link rel="stylesheet" type="text/css" href="./css/asg_ie.css" />');
}

function hoverimgover(name)	{
	
	document.images[name].src= './img/'+name+'_over.jpg';
}
function hoverimgout(name)	{
	document.images[name].src= './img/'+name+'_out.jpg';
	
}
function hover_ulout(ulname)	{
	document.images[ulname].src= './img/'+ulname+'_out.jpg';
}
function hover_ulover(ulname)	{
	document.images[ulname].src= './img/'+ulname+'_over.jpg';
}

function startList() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav_ul");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=startList;
