﻿// JScript File
var MenuCount = 0
function BuildMenu(thehref, thisSection, AltTag, theWidth, theHeight)
{
  MenuCount = MenuCount + 1
  if (curSection == thisSection)
  {
    document.write('<td width="' + theWidth + '"><img src="/img/nav_' + thisSection + '_over.gif" name="nav' + MenuCount + '" width="' + theWidth + '" height="19" border="0"></td>')
  }else{
  document.write('<td width="' + theWidth + '"><a href="' + thehref + '" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'nav' + MenuCount + '\',\'\',\'/img/nav_' + thisSection + '_over.gif\',' + MenuCount + ')"><img src="/img/nav_' + thisSection + '.gif" alt="' + AltTag + '" name="nav' + MenuCount + '" width="' + theWidth + '" height="19" border="0"></a></td>')
  }
}

document.write("<table width='779' border='0' cellpadding='0' cellspacing='0' bgcolor='#333366'><tr>");
BuildMenu('/index.asp', 'home', 'Online Slimming Club - homepage', 62);
BuildMenu('/Profile/dietProfile.asp', 'profile', 'Online Slimming Club - Free Diet Profile', 138);
BuildMenu('/About/aboutClub.shtm', 'aboutClub', 'Online Slimming Club - About our Club', 130);
BuildMenu('/Profile/dietProfile.asp', 'join', 'Join our Slimming Club today!', 51);
BuildMenu('/TaF/TaF.shtm', 'TaF', 'Online Slimming Club - Tell a Friend', 112);
BuildMenu('/feedback.shtm', 'feedback', 'Online Slimming Club Members Feedback', 160);
//BuildMenu('/Shop/', 'shop', 'Online Slimming Club Shop', 40);
document.write("<td width='126'>&nbsp;</td></tr></table>");

