// JavaScript Document
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;

var pri = new Array ("home", "cont", "search", "dots9");
for (i=0; i<pri.length; i++) {
	eval(pri[i]+"_off = new Image(); "+pri[i]+"_off.src = '/images/"+pri[i]+"_off.gif';");
	eval(pri[i]+"_on = new Image(); "+pri[i]+"_on.src = '/images/"+pri[i]+"_on.gif';");
}
function mov(it) {
	if (document.images) {
		if (document.images[it]) 
			document.images[it].src = eval(it+"_on.src");
		else 
			eval ("document.all." + it + ".src=" + it + "_on.src");
	}
}
function mou(it) {
	if (document.images) {
		if (document.images[it])
			document.images[it].src = eval(it+"_off.src");
		else 
			eval ("document.all." + it + ".src=" + it + "_off.src");
	}
}
