// ********************************
// ** Header and Footer Creator  **
// **               2006.2.25    **
// **    Original: hd.js / ft.js **
// **      Modified by Na@cocoam **
// ********************************

// navi_header(_path_)
//    create header for navigation by relative path.
// argumentss:
//    _path_: relative path
// return value:
//    none;
// output:
//    HTML scripts
function navi_header(_path_) {
   document.write('');
   document.write('<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">');
   document.write('<tr>');
   document.write('<td><a href=\"'+_path_+'/dic/dic.html\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage(\'Image21\',\'\',\''+_path_+'/images/hd_nv_01_o.gif\',1)\"><img src=\"'+_path_+'/images/hd_nv_01_d.gif\" alt=\"紅茶百科\" name=\"Image21\" width=\"69\" height=\"25\" border=\"0\"></a></td>');
   document.write('<td><a href=\"'+_path_+'/seminar/seminar.html\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage(\'Image22\',\'\',\''+_path_+'/images/hd_nv_02_o.gif\',1)\"><img src=\"'+_path_+'/images/hd_nv_02_d.gif\" alt=\"セミナー情報\" name=\"Image22\" width=\"74\" height=\"25\" border=\"0\"></a></td>');
   document.write('<td><a href=\"'+_path_+'/event/event.html\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage(\'Image23\',\'\',\''+_path_+'/images/hd_nv_03_o.gif\',1)\"><img src=\"'+_path_+'/images/hd_nv_03_d.gif\" alt=\"イベント案内\" name=\"Image23\" width=\"77\" height=\"25\" border=\"0\"></a></td>');
   document.write('<td><a href=\"'+_path_+'/yousei/yousei.html\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage(\'Image24\',\'\',\''+_path_+'/images/hd_nv_04_o.gif\',1)\"><img src=\"'+_path_+'/images/hd_nv_04_d.gif\" alt=\"インストラクター養成\" name=\"Image24\" width=\"108\" height=\"25\" border=\"0\"></a></td>');
   document.write('<td><a href=\"'+_path_+'/tokubetu/tokubetu.html\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage(\'Image25\',\'\',\''+_path_+'/images/hd_nv_05_o.gif\',1)\"><img src=\"'+_path_+'/images/hd_nv_05_d.gif\" alt=\"特別研修会\" name=\"Image25\" width=\"73\" height=\"25\" border=\"0\"></a></td>');
   document.write('<td><a href=\"'+_path_+'/shop/shop.html\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage(\'Image26\',\'\',\''+_path_+'/images/hd_nv_06_o.gif\',1)\"><img src=\"'+_path_+'/images/hd_nv_06_d.gif\" alt=\"認定店ご紹介\" name=\"Image26\" width=\"84\" height=\"25\" border=\"0\"></a></td>');
   document.write('<td><a href=\"'+_path_+'/office/office.html\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage(\'Image27\',\'\',\''+_path_+'/images/hd_nv_07_o.gif\',1)\"><img src=\"'+_path_+'/images/hd_nv_07_d.gif\" alt=\"協会のご案内\" name=\"Image27\" width=\"95\" height=\"25\" border=\"0\"></a></td>');
   document.write('</tr>');
   document.write('</table>');
   document.write('');
}

// navi_footer(_path_)
//    create footer by relative path.
// argumentss:
//    _path_: relative path
// return value:
//    none;
// output:
//    HTML scripts
function navi_footer(_path_) {
   document.write('<img src=\"'+_path_+'/images/ft_cr.gif\" alt=\"2006 (c) Japan Tea Association All Rights Reserved.\">');
}



