//=================================================================================
// ペンシステム　ロールオーバースクリプト
//=================================================================================

if(window.document.images){

//-- グローバルナビゲーションIMG

	var img_a = new Array();

	img_a[1] = new Image(); img_a[1].src = "images/gm1_r.gif";
	img_a[2] = new Image(); img_a[2].src = "images/gm1_n.gif";

	img_a[3] = new Image(); img_a[3].src = "images/gm2_r.gif";
	img_a[4] = new Image(); img_a[4].src = "images/gm2_n.gif";

	img_a[5] = new Image(); img_a[5].src = "images/gm3_r.gif";
	img_a[6] = new Image(); img_a[6].src = "images/gm3_n.gif";

	img_a[7] = new Image(); img_a[7].src = "images/gm4_r.gif";
	img_a[8] = new Image(); img_a[8].src = "images/gm4_n.gif";

	img_a[9] = new Image(); img_a[9].src = "images/gm5_r.gif";
	img_a[10] = new Image(); img_a[10].src = "images/gm5_n.gif";


	function Gnv_in(nam,num){
		window.document.images[nam].src = img_a[num].src;
	}

	function Gnv_out(nam,num){
		window.document.images[nam].src = img_a[num].src;
	}
}