// JavaScript Document
if (document.images) {
 var imgPath = "images/"
 var bt_why1 = new Image; bt_why1.src = imgPath + "bt-why-on.jpg";
 var bt_why0 = new Image; bt_why0.src = imgPath + "bt-why.jpg";
 var bt_how1 = new Image; bt_how1.src = imgPath + "bt-how-on.jpg";
 var bt_how0 = new Image; bt_how0.src = imgPath + "bt-how.jpg";
 var bt_where1 = new Image; bt_where1.src = imgPath + "bt-where-on.jpg";
 var bt_where0 = new Image; bt_where0.src = imgPath + "bt-where.jpg";
 var bt_what1 = new Image; bt_what1.src = imgPath + "bt-what-on.jpg";
 var bt_what0 = new Image; bt_what0.src = imgPath + "bt-what.jpg";
 var n_m1 = new Image; n_m1.src = imgPath + "n_more_on.jpg";
 var n_m0 = new Image; n_m0.src = imgPath + "n_more.jpg";
 var bt_faq1 = new Image; bt_faq1.src = imgPath + "bt-faq-on.jpg";
 var bt_faq0 = new Image; bt_faq0.src = imgPath + "bt-faq.jpg";
 
 var tn_e1 = new Image; tn_e1.src = imgPath + "tn_en_on.gif";
 var tn_e0 = new Image; tn_e0.src = imgPath + "tn_en.gif";
 var tn_f1 = new Image; tn_f1.src = imgPath + "tn_fr_on.gif";
 var tn_f0 = new Image; tn_f0.src = imgPath + "tn_fr.gif";
 

}

//**************************************************************//

function doRollover(imgName, onOff) {
	if (document.images) {
	var targetObj = eval(imgName+onOff);
		if (document.images[imgName] != null && targetObj != null) {
		document.images[imgName].src = targetObj.src;
		}
	}
}

function go() {
	box = document.forms[0].nav;
	dest = box.options[box.selectedIndex].value;
	if (dest) location.href = dest;
}