//オンマウス時、gif画像に"_o"をつける。
function Over(IMG){
baseIMG = document.images[IMG].src;
newIMG = baseIMG.replace(".gif","_o.gif");
document.images[IMG].src=newIMG;
}
function Out(IMG){
baseIMG = document.images[IMG].src;
newIMG = baseIMG.replace("_o","");
document.images[IMG].src=newIMG;
}
function Init(){
prImg= new Array();
for (i=0; i<document.images.length; i++){
if(document.images[i].ID){
baseIMG = document.images[i].src;
newIMG = baseIMG.replace(".gif","_o.gif");
prImg[i] = new Image();
prImg[i].src = newIMG;
}
}
}

//サイト内検索ボックス：focus時に背景色を変える
function focusColor(){
	document.forms[0].q.style.backgroundColor = "#feffec";
	document.forms[0].q.style.borderColor = "#7dceff";
}

function blurColor(){
	document.forms[0].q.style.backgroundColor = "#fff";
	document.forms[0].q.style.borderColor = "#c0c0c0";
}

