// JavaScript Document



//ロールオーバー
function cngimg(button){
	var imgsrc = button.src;
	if(imgsrc.indexOf("_over") <= 0){
		button.src=imgsrc.substring(0,imgsrc.length-4) +"_over.gif";
	}
	else{
		button.src=imgsrc.substring(0,imgsrc.length-9) +".gif";
	}
}


// JavaScript Document

