<!-- 

//■ブラウザの判別
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/a_intdtn_color60.jpg";

	document.on_gallery = new Image();
	document.on_gallery.src="images/menu/a_gallery_color60.jpg";

	document.on_contents = new Image();
	document.on_contents.src="images/menu/a_contents_color60.jpg";
	
	document.on_image = new Image();
	document.on_image.src="images/mar_094.gif";

	document.on_yasokichi = new Image();
	document.on_yasokichi.src="images/art/yasokichi/yasokichi_red.gif";

}

//■画像の入れ換え
function menuon(i){
    if(nv != 1){
	if(i == 1){
	    document.intdtn.src="images/menu/a_intdtn_color60.jpg"
	    document.mar1.src="images/mar_094.gif"
	}
	if(i == 2){
	    document.gallery.src="images/menu/a_gallery_color60.jpg"
	    document.mar2.src="images/mar_094.gif"
	}
	if(i == 3){
	    document.contents.src="images/menu/a_contents_color60.jpg"
	    document.mar3.src="images/mar_094.gif"
	}
    }
}
function menuout(i){
    if(nv != 1){
	if(i == 1){
	    document.intdtn.src="images/menu/a_intdtn_mono60.jpg"
	    document.mar1.src="images/mar_091.gif"
	}
	if(i == 2){
	    document.gallery.src="images/menu/a_gallery_mono60.jpg"
	    document.mar2.src="images/mar_091.gif"
	}
	if(i == 3){
	    document.contents.src="images/menu/a_contents_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"}
    }
}


function menuon_yaso(i){
    if(nv != 1){
	if(i == 1){document.yasokichi.src="images/art/yasokichi/yasokichi_red.gif";}
    }
}
function menuout_yaso(i){
    if(nv != 1){
	if(i == 1){document.yasokichi.src="images/art/yasokichi/yasokichi_mono.gif";}
    }
}

// -->
