<!-- 


//■ブラウザの判別
var agent = navigator.userAgent;
var nv = 0;
if(agent.indexOf("Mozilla/2") == 0){var nv = 1}


//■新規画像の読み込み
if(nv != 1){
	document.on_intdtn = new Image();
	document.on_intdtn.src="images/menu/t_health_color60.jpg";

	document.on_gallery = new Image();
	document.on_gallery.src="images/menu/t_beathy_color60.jpg";

	document.on_contents = new Image();
	document.on_contents.src="images/menu/t_method_color60.jpg";

 	document.on_contents = new Image();
	document.on_contents.src="images/menu/t_order_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.health.src="images/menu/t_health_color60.jpg"
	    document.mar1.src="images/mar_094.gif"
	}
	if(i == 2){
	    document.beathy.src="images/menu/t_beathy_color60.jpg"
	    document.mar2.src="images/mar_094.gif"
	}
	if(i == 3){
	    document.order.src="images/menu/t_order_color60.jpg"
	    document.mar3.src="images/mar_094.gif"
	}
    }
}
function menuout(i){
    if(nv != 1){
	if(i == 1){
	    document.health.src="images/menu/t_health_mono60.jpg"
	    document.mar1.src="images/mar_091.gif"
	}
	if(i == 2){
	    document.beathy.src="images/menu/t_beathy_mono60.jpg"
	    document.mar2.src="images/mar_091.gif"
	}
	if(i == 3){
	    document.order.src="images/menu/t_order_mono60.jpg"
	    document.mar3.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"}
    }
}
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"}
    }
}

// -->

