<!-- 

//■ブラウザの判別
var agent = navigator.userAgent;
var nv = 0;
if(agent.indexOf("Mozilla/2") == 0){var nv = 1}


//■新規画像の読み込み
if(nv != 1){
	document.on_look = new Image();
	document.on_look.src="images/menu/r_look_color60.jpg";

	document.on_search = new Image();
	document.on_search.src="images/menu/r_search_color60.jpg";

	document.on_appoint = new Image();
	document.on_appoint.src="images/menu/r_appoint_color60.jpg";

	document.on_helpful = new Image();
	document.on_helpful.src="images/menu/r_helpful_color60.jpg";

	document.on_link = new Image();
	document.on_link.src="images/menu/r_link_color60.jpg";

	document.on_image = new Image();
	document.on_image.src="images/mar_094.gif";

}

//■画像の入れ換え
function menuon(i){
    if(nv != 1){
	if(i == 1){
	   document.look.src="images/menu/r_look_color60.jpg"
	   document.mar1.src="images/mar_094.gif"
	}
	if(i == 2){
	   document.search.src="images/menu/r_search_color60.jpg"
	   document.mar2.src="images/mar_094.gif"
	}
	if(i == 3){
	   document.appoint.src="images/menu/r_appoint_color60.jpg"
	   document.mar3.src="images/mar_094.gif"
	}
	if(i == 4){
	   document.helpful.src="images/menu/r_helpful_color60.jpg"
	   document.mar4.src="images/mar_094.gif"
	}
	if(i == 5){
	   document.link.src="images/menu/r_link_color60.jpg"
	   document.mar5.src="images/mar_094.gif"
	}
    }
}
function menuout(i){
    if(nv != 1){
	if(i == 1){
	   document.look.src="images/menu/r_look_mono60.jpg"
	   document.mar1.src="images/mar_091.gif"
	}
	if(i == 2){
	   document.search.src="images/menu/r_search_mono60.jpg"
	   document.mar2.src="images/mar_091.gif"
	}
	if(i == 3){
	   document.appoint.src="images/menu/r_appoint_mono60.jpg"
	   document.mar3.src="images/mar_091.gif"
	}
	if(i == 4){
	   document.helpful.src="images/menu/r_helpful_mono60.jpg"
	   document.mar4.src="images/mar_091.gif"
	}
	if(i == 5){
	   document.link.src="images/menu/r_link_mono60.jpg"
	   document.mar5.src="images/mar_091.gif"
	}
    }
}

function menuon_str(i){
    if(nv != 1){
	if(i == 1){document.mar1.src="images/mar_094.gif"}
	if(i == 2){document.mar2.src="images/mar_094.gif"}
	if(i == 3){document.mar3.src="images/mar_094.gif"}
	if(i == 4){document.mar4.src="images/mar_094.gif"}
	if(i == 5){document.mar5.src="images/mar_094.gif"}
    }
}
function menuout_str(i){
    if(nv != 1){
	if(i == 1){document.mar1.src="images/mar_091.gif"}
	if(i == 2){document.mar2.src="images/mar_091.gif"}
	if(i == 3){document.mar3.src="images/mar_091.gif"}
	if(i == 4){document.mar4.src="images/mar_091.gif"}
	if(i == 5){document.mar5.src="images/mar_091.gif"}
    }
}

// -->

