<!--//--><![CDATA[//><!--

provinces = function() {
	
	if (!document.getElementById("provinces")){
		return;
	}

	var sfEls = document.getElementById("provinces").getElementsByTagName("LI");


	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" provinces";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" provinces\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", provinces);

//--><!]]>
