function chooseSheet() {
var today = new Date();
var month = today.getMonth() + 2;
var year = today.getFullYear(); 
if ((month > -1) && (month < 5)) window.location.href = "Programme" + year + "-JanMay.html";
else  if ((month > 4) && (month < 8)) window.location.href = "Programme" + year +  "-JunAug.html";
else  if ((month > 7) && (month < 12)) window.location.href = "Programme" + year + "-SepDec.html";
}

function menuItem(pageName, txt) {
document.write("</td</tr><tr><td nowrap>");
document.write("<a href='" + pageName + ".html' class='menu'>" + txt + "</a>");
}
function subMenuItem(pageName, txt) {
document.write("</td</tr><tr><td nowrap>");
document.write("<a href='" + pageName + ".html' class='menu'>&nbsp;&nbsp;" + txt + "</a>");
}
function titleItem(txt) {
document.write("</td</tr><tr><td nowrap class='menutitle'>");
document.write(txt);
}

function pageSelect(pageName) {
document.write("</td</tr><tr><td nowrap>");
document.write("<a href='#' class='menu' onClick='chooseSheet();'>" + pageName + "</a>");
}

function menuseparator () {
document.write("</td</tr><tr><td height='10' vspace='5'>");
document.write('<img src="images/menu-separator3.png" width="150" height="1">');
}

document.write('<div id="menulocation"  class="menu-background menuwidth">');
document.write("<table cellpadding='0' cellspacing='0' width='150'>");
menuItem("index", "Home");
menuItem("News", "News Articles");
menuItem("SIGs","Special Interest Groups");
menuItem("Exhibitions","Exhibitions");

menuseparator();

pageSelect("Programme");
subMenuItem("Programme2010-JunAug", "  Summer 2010");
subMenuItem("Programme2010-SepDec", "  Winter 2010");
subMenuItem("Programme2011-JanMay", "  Winter 2011");

menuseparator();

menuItem("Competitions","Competitions");
menuItem("Competition Results","Competition Results");
menuItem("CompetitionRules","Competition Rules");
menuItem("CompetitionEntry","Competition Entry");

menuseparator();

menuItem("Membership","Membership");
menuItem("MembersGallery", "Members Gallery");
menuItem("Committee","Committee");	
menuItem("Contact Us", "Contact Us");
menuItem("Glossary", "Glossary");
menuItem("Links", "Links");

menuseparator();

menuItem("ClubHistory", "Club History");
menuItem("Archives02-07", "Archives 02-07");
menuItem("Archives07-08", "Archives from 07");

menuseparator();

menuItem("Copyright", "The Legal Bit");

document.write('<img src="images/menuLogo.gif" width="120" height="120">');

document.write("</td</tr></table>");
document.write("<p>&nbsp;</p>");

document.write("</div>");




