// Script to create the mainmenu for ckmarketing


var items = 7;

var menuItems = ["Home", "News", "2010 scores", "Past scores", "Past winners", "Captains", "Contact"];
var menuURL   = ["index.html", "news.html", "2010scores.html", "scores.html", "fulllist.html", "captains.html", "contact.html"];
document.write(' ')
for (var i=0; i < items; i++) {
  document.write('&nbsp;&nbsp;<a href=\"' + menuURL[i] + '\">' + menuItems[i] + '</a> <br><br>\n');
}



