startList = function() {
	if (document.all && document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
//					this.style.display = "block";
					this.setAttribute("class"," over");
					this.className+=" over";
				}
				node.onmouseout=function() {
//					this.style.display = "none";
					this.setAttribute("class","");
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}

window.onload=startList;

function SetCanSwitch()
{
		
	if (document.QuickQuote.SwitchBusiness.options.selectedIndex == 1)
	{
		document.QuickQuote.Switch1.disabled = false;
		document.QuickQuote.Switch2.disabled = false;
	}
	else
	{
		document.QuickQuote.Switch1.options[2].selected = true;
		document.QuickQuote.Switch2.options[2].selected = true;
		document.QuickQuote.Switch1.disabled = true;
		document.QuickQuote.Switch2.disabled = true;
	}
}