		function formHandler(form) {
		var URL = document.form.site.options[document.form.site.selectedIndex].value;
		window.location.href = URL;
		}

		startList = function() {
		if (document.all&&document.getElementById) {
		navRoot = document.getElementById("topnav");
		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 loadList()
{
	/* Special cases dropdown	*/
	var selSpecial = document.getElementById("selSpecial");
	var arrList = 
		new Array(
			new Array("papermills", "Usine de papier"),
			new Array("food", "Alimentaire"),
			new Array("paint", "Peinture"),			
			new Array("imprimerie", "Imprimerie"),
			new Array("acier", "Acier"),			
			new Array("toolbox", "Manuf. de coffres à outils"),
			new Array("horticultural", "Horticulture"),
			new Array("textile", "Textile"),
			new Array("auto", "Automobile"),
			new Array("industrial", "Matériaux industriels"),
			new Array("constmaterial", "Matériaux de constr."),
			new Array("beverages", "Breuvages"),
			new Array("construction", "Construction"),
			new Array("paper", "Papier"),						
			new Array("all", "Toutes les industries"),
			new Array("blocks", "Blocs, briques et paillis"),
			new Array("electrical", "Produits électriques"),
			new Array("hardgoods", "Biens durables – Constr."),
			new Array("pharma", "Pharmaceutique"),
			new Array("dist", "Centres de distribution")
		);		
	for (var i = 0; i < arrList.length; i++) 
	{
		selSpecial.options[i] = new Option(arrList[i][1], "specialcases.html#" + arrList[i][0]);
	}
}
	

		lunch_javascript = function (){
		loadList();
		startList();
		}


