
//--------------------ヘッダ検索用

function tomatosearchhead(){
document.urecipesearch.searchValue.value = '!' + document.urecipesearch.searchValue.value +'　tomato_matsuri';
//document.urecipesearch.searchValue.style.color='white';
//setMsgTenmetuhead();
}


//検索後文字点滅

flg=true;
function setMsgTenmetuhead(){
if(flg){
document.getElementById("msgid").innerHTML="<font color=#ff0000>検索中</font>";
}else{
document.getElementById("msgid").innerHTML="";
}
flg=!flg;
setTimeout("setMsgTenmetuhead()",500);
}


//--------------------検索ページ用

//検索後に検索ワードに「tomato_matsuri」をいれて、検索ワードを白くする

function tomatosearch(){
document.urecipefreesearch.searchValue.value = '!' + document.urecipefreesearch.searchValue.value +'　tomato_matsuri';
document.urecipefreesearch.searchValue.style.color='white';
setMsgTenmetu();
}


//検索後文字点滅

flg=true;
function setMsgTenmetu(){
if(flg){
document.getElementById("msgid2").innerHTML="【検索中】";
}else{
document.getElementById("msgid2").innerHTML="";
}
flg=!flg;
setTimeout("setMsgTenmetu()",500);
}

