if(navigator.appVersion.charAt(0)>=3){
var imgAry=new Array();

for(i=0;i<10;i++){
imgAry[i]=new Image();
}

imgAry[0].src="./images/top_navi_kokemomo.gif";
imgAry[1].src="./images/top_navi_kokemomo_on.gif";
imgAry[2].src="./images/top_navi_member.gif";
imgAry[3].src="./images/top_navi_member_on.gif";
imgAry[4].src="./images/top_navi_schedule.gif";
imgAry[5].src="./images/top_navi_schedule_on.gif";
imgAry[6].src="./images/top_navi_contact.gif";
imgAry[7].src="./images/top_navi_contact_on.gif";
imgAry[8].src="./images/top_navi_blog.gif";
imgAry[9].src="./images/top_navi_blog_on.gif";
}

function changeImg(dim,cnt){
if(navigator.appVersion.charAt(0)>=3){
document.images[dim].src=imgAry[cnt].src;
};
}; 