<!--  rollov3.js [SUPPORT] -->
<!--
//
// Browser ditinguish routine
//
var agent = navigator.userAgent;
var nv = 0;
if(agent.indexOf("Mozilla/2") == 0){var nv = 1}

//
// New imeges load routine
//
if(nv != 1){
document.onimage1 = new Image();
document.onimage1.src="img/bt_top_on.gif";
document.onimage2 = new Image();
document.onimage2.src="img/bt_mant_on.gif";
document.onimage3 = new Image();
document.onimage3.src="img/bt_faq_on.gif";
document.onimage4 = new Image();
document.onimage4.src="img/bt_guide_on.gif";
document.onimage5 = new Image();
document.onimage5.src="img/bt_change_on.gif";
}
//
// Image chenge routine
//
function menuon(i){
 if(nv != 1){
	if(i == 1){document.menu1.src="img/bt_top_on.gif"}
	if(i == 2){document.menu2.src="img/bt_mant_on.gif"}
	if(i == 3){document.menu3.src="img/bt_faq_on.gif"}
	if(i == 4){document.menu4.src="img/bt_guide_on.gif"}
	if(i == 5){document.menu5.src="img/bt_change_on.gif"}
	}
 }
function menuout(i){
 if(nv != 1){
	if(i == 1){document.menu1.src="img/bt_top_of.gif"}
	if(i == 2){document.menu2.src="img/bt_mant_of.gif"}
	if(i == 3){document.menu3.src="img/bt_faq_of.gif"}
	if(i == 4){document.menu4.src="img/bt_guide_of.gif"}
	if(i == 5){document.menu5.src="img/bt_change_of.gif"}
	}
 }
// -->
