var englishAlt=new Array("About Us","Our Services","Lantech Philosophy","Company History","Company Milestones","Management Team","References","Our Equipment","Contact Us");
var francaisAlt=new Array("Accueil","A propos de nous","Philosophie de Lantech","L’historique","Nos faits saillants","L’équipe de direction","Références","Nos équipements","Pour nous joindre");
var englishImg=new Array("about_us","our_services","philosophy","history","milestones","team","references_en","equipment","contact_us");
var francaisImg=new Array("index_fr","a_propos","philosophie","historique","faits","direction","references","equipements","nous_joindre");
var altTxt;
var pName;

function loadMenu(lang, page){
		
	if(lang == "en"){
		altTxt = englishAlt;
		pName = englishImg;
	}else{
		altTxt = francaisAlt;   
		pName = francaisImg;
	}
	for(i = 0; i < altTxt.length ;i++){
		document.write("<a href=\"" + pName[i] + ".html\"><img src=\"img/");
		if(page == pName[i]){
			document.write("over_");
		}
		document.write("" + pName[i] + ".gif\" width=\"206\" border=\"0\" alt=\"" + altTxt[i] + "\" /></a><br />");
	}
}
function footer(lang){
	if(lang == "fr"){
		document.write("&copy; Lantech Drilling Services Inc.<br />");
		document.write("G&eacute;n&eacute;r&eacute; par <a style=\"color:#FFFFFF;\" href=\"http://www.mindsweep.ca\">Mindsweep.ca</a><br /><br />");
	}else{
		document.write("&copy; Lantech Drilling Services Inc.<br />");
		document.write("Powered by <a style=\"color:#FFFFFF;\" href=\"http://www.mindsweep.ca\">Mindsweep.ca</a><br /><br />");
	}
}
