<!-- Hide from non-javascript compatible browsers



//-----------------------メニュー書き出し---------------------------------

//ヘッダーを配置する関数

function put_header(dir,flg) {


if (flg == '1'){
    put_btn('mnu_01','http://www.bigfoot-shop.com/','top',dir,'1');}
else{
    put_btn('mnu_01','http://www.bigfoot-shop.com/','top',dir,'0');}

if (flg == '2'){
    put_btn('mnu_02','http://www.bigfoot-shop.com/aisatu/','',dir,'1');}
else{
    put_btn('mnu_02','http://www.bigfoot-shop.com/aisatu/','',dir,'0');}

if (flg == '3'){
    put_btn('mnu_03','http://www.bigfoot-shop.com/shopinfo/','',dir,'1');}
else{
    put_btn('mnu_03','http://www.bigfoot-shop.com/shopinfo/','',dir,'0');}

if (flg == '04'){
    put_btn('mnu_04','http://www.bigfoot-shop.com/kaitori/','',dir,'1');}
else{
    put_btn('mnu_04','http://www.bigfoot-shop.com/kaitori/','',dir,'0');}

if (flg == '6'){
    put_btn('mnu_05','http://www.bigfoot-shop.com/nethanbai/','',dir,'1');}
else{
    put_btn('mnu_05','http://www.bigfoot-shop.com/nethanbai/','',dir,'0');}

if (flg == '5'){
    put_btn('mnu_06','http://www.bigfoot-shop.com/tenblog/','',dir,'1');}
else{
    put_btn('mnu_06','http://www.bigfoot-shop.com/tenblog/','',dir,'0');}


document.write("<br />");
//document.write("</div>");
//document.write("</div>");


}

//左のメニューボタンを配置する関数
//(flg　0:通常  1:マウスオン状態)
function put_btn(name,url,alt,dir,flg) {

document.write("<a href='");
document.write(url);
document.write("'><img src='");
document.write(dir);
document.write("http://www.bigfoot-shop.com/img/");
document.write(name);

if (flg == '1'){
    document.write("_o");}
else{
    document.write("");}

document.write(".gif' alt='");
document.write(alt);

if (flg == '1'){
    document.write("' border='0'></a>");}
else{
    document.write("' class='imgover' border='0'></a>");}


}
// End hiding -->














