// JavaScript Document

window.onload=function(){
	// Load Menu
	startList();
}

// Load Drop Down Menu
<!--//--><![CDATA[//><!--
startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("menu");
		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", "");
				}
			}
		}
	}
}

//--><!]]>

function checkStates(){
	var Country = document.getElementById('Country').value;
	if(Country!=1){
		document.getElementById('StateID').disabled = true;
		document.getElementById('ClosestID').disabled = true;
	}
	else{
		document.getElementById('StateID').disabled = false;
		document.getElementById('ClosestID').disabled = false;
	}
}

function changeParents(){
	parobj=document.getElementById('ClosestID');
	cntr=(parobj.length)-1;
	var StateID=document.getElementById('StateID').value;
	for(x=cntr;x>=0;x--){
		parobj.options[x] = null;
	}
	myOpt = new Option("Loading ..........","n/a");

	parobj.options[0] = myOpt;
	document.getElementById("sframe").src="/loadregions.php?StateID="+StateID;
}
