//ポップアップメニューの表示
text0  = "";
text0 += "<div class='tmenus' id='tmenu01s' name='tmenu01s' onmouseover='tmons(this);' onmouseout='tmoffs(this);'>";
text0 += "<a name='tmenu011' onmouseover='tmona(this);' onmouseout='tmoffa(this);' href='http://www.hplabo.com/works/' title='制作実績'>制作実績</a>";
text0 += "<a name='tmenu012' onmouseover='tmona(this);' onmouseout='tmoffa(this);' href='http://www.hplabo.com/users/' title='ユーザーの声'>ユーザーの声</a>";
text0 += "<a name='tmenu018' onmouseover='tmona(this);' onmouseout='tmoffa(this);' href='http://www.hplabo.com/crew/' title='スタッフ紹介'>スタッフ紹介</a>";
text0 += "<a name='tmenu019' onmouseover='tmona(this);' onmouseout='tmoffa(this);' href='http://www.inventory.jp/blog/' title='ブログ'>ブログ</a>";
text0 += "<a name='tmenu019' onmouseover='tmona(this);' onmouseout='tmoffa(this);' href='http://www.hplabo.com/designer/' title='デザイナー ブログ'>デザイナー ブログ</a>";

text0 += "</div>";
document.write(text0);

text0  = "";
text0 += "<div class='tmenus' id='tmenu02s' name='tmenu02s' onmouseover='tmons(this);' onmouseout='tmoffs(this);'>";
text0 += "<a name='tmenu021' onmouseover='tmona(this);' onmouseout='tmoffa(this);' href='http://www.hplabo.com/hp/plan/startpack/' title='ホームページ制作スタートパック'>HP制作スタートパック</a>";
text0 += "</div>";
document.write(text0);

text0  = "";
text0 += "<div class='tmenus' id='tmenu03s' name='tmenu03s' onmouseover='tmons(this);' onmouseout='tmoffs(this);'>";
text0 += "<a name='tmenu031' onmouseover='tmona(this);' onmouseout='tmoffa(this);' href='http://www.hplabo.com/netshop/service/' title='ネットショップ制作サービス一覧'>サービス一覧</a>";
text0 += "<a name='tmenu032' onmouseover='tmona(this);' onmouseout='tmoffa(this);' href='http://www.hplabo.com/netshop/service/start/' title='ネットショップ開業パック'>ネットショップ開業パック</a>";
text0 += "<a name='tmenu033' onmouseover='tmona(this);' onmouseout='tmoffa(this);' href='http://www.hplabo.com/netshop/service/nso/' title='ネットショップオーナー3'>ネットショップオーナー3</a>";
text0 += "</div>";
document.write(text0);

text0  = "";
text0 += "<div class='tmenus' id='tmenu04s' name='tmenu04s' onmouseover='tmons(this);' onmouseout='tmoffs(this);'>";
text0 += "</div>";
document.write(text0);

text0  = "";
text0 += "<div class='tmenus' id='tmenu05s' name='tmenu05s' onmouseover='tmons(this);' onmouseout='tmoffs(this);'>";
text0 += "<a name='tmenu051' onmouseover='tmona(this);' onmouseout='tmoffa(this);' href='http://www.hplabo.com/op/service/' title='オプションサービス一覧'>オプションサービス一覧</a>";
text0 += "<a name='tmenu052' onmouseover='tmona(this);' onmouseout='tmoffa(this);' href='http://www.hplabo.com/op/service/googlemap/' title='Googlemapカスタム'>Googlemapカスタム</a>";
text0 += "<a name='tmenu053' onmouseover='tmona(this);' onmouseout='tmoffa(this);' href='http://www.hplabo.com/op/service/google/' title='Googlemap登録代行'>Googlemap登録代行</a>";
text0 += "<a name='tmenu053' onmouseover='tmona(this);' onmouseout='tmoffa(this);' href='http://www.hplabo.com/op/service/domain/' title='ドメイン登録代行'>ドメイン登録代行</a>";
text0 += "<a name='tmenu055' onmouseover='tmona(this);' onmouseout='tmoffa(this);' href='http://www.hplabo.com/op/service/server/' title='ホスティング・レンタルサーバー'>ホスティング</a>";

text0 += "<a name='tmenu055' onmouseover='tmona(this);' onmouseout='tmoffa(this);' href='http://www.eclabo.com/store/' title='ECLABO STORE' target='_blank'>ECLABO STORE</a>";

text0 += "</div>";
document.write(text0);

text0  = "";
text0 += "<div class='tmenus' id='tmenu06s' name='tmenu06s' onmouseover='tmons(this);' onmouseout='tmoffs(this);'>";
text0 += "</div>";
document.write(text0);

text0  = "";
text0 += "<div class='tmenus' id='tmenu07s' name='tmenu07s' onmouseover='tmons(this);' onmouseout='tmoffs(this);'>";
text0 += "</div>";
document.write(text0);

text0  = "";
text0 += "<div class='tmenus' id='tmenu08s' name='tmenu08s' onmouseover='tmons(this);' onmouseout='tmoffs(this);'>";
text0 += "</div>";
document.write(text0);

text0  = "";
text0 += "<div class='tmenus' id='tmenu09s' name='tmenu09s' onmouseover='tmons(this);' onmouseout='tmoffs(this);'>";
text0 += "</div>";
document.write(text0);



//サブメニューに乗っかった時のON
function tmons(obj0){
  objnam0 = obj0.name;
//alert(objnam0.length);
  if (objnam0.length < 8){
    tmoff_all();
  }else{
    tmoff_all();
  }
  objnam0 = obj0.name;
  objnam0 = objnam0.substring(0,7)+"s";
//alert(objnam0);
  document.getElementById(objnam0).style.visibility = 'visible';
}
//サブメニューに乗っかった時のOFF
function tmoffs(obj0){
  objnam0 = obj0.name;
//alert(objnam0.length);
  if (objnam0.length > 7){
    objnam0 = objnam0.substring(0,7)+"s";
    document.getElementById(objnam0).style.visibility = 'hidden';
  }
}

//サブメニューのリンクの時ON
function tmona(obj0){
  objnam0 = obj0.name;
//alert(objnam0.length);
  if (objnam0.length < 8){
    tmoff_all();
  }else{
    tmoff_all();
  }
  objnam0 = obj0.name;
  objnam0 = objnam0.substring(0,7)+"s";
//alert(objnam0);
  document.getElementById(objnam0).style.visibility = 'visible';
}
//サブメニューのリンクに乗っかった時のOFF
function tmoffa(obj0){
  objnam0 = obj0.name;
//alert(objnam0.length);
  if (objnam0.length > 7){
    objnam0 = objnam0.substring(0,7)+"s";
    document.getElementById(objnam0).style.visibility = 'hidden';
  }
}
//すべてのメニューをOFF
function tmoff_all(){
  for(i=2;i<=9;i++){
    objnam0 = "tmenu0"+i+"s";
    document.getElementById(objnam0).style.visibility = 'hidden';
  }
}
function tmflips(obj0){
  objnam0 = obj0.name;
//alert(objnam0);
  flg0 = document.getElementById(objnam0).style.visibility;
  if (flg0 == "visible"){
    document.getElementById(objnam0).style.visibility = 'hidden';
  }else{
    document.getElementById(objnam0).style.visibility = 'visible';
  }
}

