/* MouseOver Script =====================*/

menuImg = new Array();
menuImg[0] = "../img/ability_btn_01_on.gif";
menuImg[1] = "../img/ability_btn_02_on.gif";
menuImg[2] = "../img/ability_btn_03_on.gif";
menuImg[3] = "../media/img/media_btn_on.gif";
menuImg[4] = "../mkg/img/marketing_btn_canvass_on.gif";
menuImg[5] = "../mkg/img/marketing_btn_brand_on.gif";
menuImg[6] = "../mkg/img/marketing_btn_data_on.gif";
menuImg[7] = "../mkg/img/marketing_btn_yrs_on.gif";
menuImg[8] = "../entertainment/img/entertainment_btn_01_on.gif";
menuImg[9] = "../entertainment/img/entertainment_btn_02_on.gif";
menuImg[10] = "../entertainment/img/entertainment_btn_03_on.gif";
menuImg[11] = "../entertainment/img/entertainment_btn_04_on.gif";
menuImg[12] = "../entertainment/img/entertainment_btn_05_on.gif";
menuImg[13] = "../creative/img/creative_mottainai_btn_on.gif";
menuImg[14] = "../creative/img/creative_bushido_btn_on.gif";

menuPre = new Array();
for(i=0;i<menuImg.length;i++){
	menuPre[i] = new Image();
	menuPre[i].src = menuImg[i];
}


function changeImg(tagObj) {
	if(!tagObj.src.match(/_on\.gif/)) {
		tagObj.src=tagObj.src.slice(0,-4)+"_on.gif";
	} else {
		tagObj.src=tagObj.src.slice(0,-7)+".gif";
	}
}