function showlist()
{
	document.getElementById("search_list").style.display = "block";
	document.getElementById("lang_select").style.backgroundPosition = '0 -20px';
}

function hidelist()
{
	document.getElementById("search_list").style.display = "none";
	document.getElementById("lang_select").style.backgroundPosition = '0 0px';
}


$(document).ready(function(){
 $(".search_text").css("border","none");
});

$(function(){
$("#search :text.search_text")
    .focus(function(){
        $(this).css("background-position", "0px -20px");
    })
    .blur(function(){
        $(this).css("background-position", "0px 0px");
    })
});
// 検索用
if( document.charset=='euc-jp' ) {
document.charset='utf-8';
location.reload();
}

function convert() {
// IE用accept-charset代替(検索時EUC_JPでサブミット)
document.charset='euc-jp';
return true;
}
document.onkeypress = convert;

$(document).ready(function(){
$("#search_query").css("color","#fff");
$("#search_query").focus(function(){
$(this).val("").css("color","#000");
});
$("#search_query").blur(function(){
$(this).css("color","#fff");
});
});