var nummenuitems = 10			//Number of items in the menu
var numelements = 4			//Number of elements in each menu item 
var menuitems = new Array(nummenuitems)	//Menu items array
var j; 					// loop counter

//Initialise the menuitems array
for(j=0; j<nummenuitems;j++)
{
	menuitems[j] = new Array(numelements)
}
function InitArray(pos,name, link, image, target)
{
	menuitems[pos][0] = name;
	menuitems[pos][1] = link;
	menuitems[pos][2] = image;
	menuitems[pos][3] = target; 
}
//These are the settings for the menu - add and change the links as required
//default target is _top
InitArray(0,"Site Index","","","");
InitArray(1,"St Mary's Home","../../index.html","","");
InitArray(2,"Events and Competitions", "events.html","","");
InitArray(3,"People and Personalities", "people.html","","");
InitArray(4,"Films and TV", "filmsTV.html","","");
InitArray(5,"Refreshments", "refreshments.html","","");
InitArray(6,"Flowers and Crafts", "flowers.html","","");
InitArray(7,"History", "history.html","","");
InitArray(8,"Tours", "tours.html","","");
InitArray(9,"Local Businesses", "sponsors.html","","");

//various settings for the menu
var menuWidth = "150"; 			//menu overall width
var menuWidth2 = "134";
var titleCol = "#FFFF99"; 			//title background colour
var titleAlign = "left";			//title horizontal alignment
var titleVAlign = "top";			//title vertical alignment
var titleFontFace = "Comic Sans MS";			//title font face
var titleFontSize = "5";			//title font size
var titleFontCol = "#000000";			//title font colour
var tdbgcol = "#FFFF99";			//background colour for the table
var tdcolmover = "#0000FF";			//background colour for the table when mouse over
var linkAlign = "left";			//link horizontal alignment
var linkVAlign = "top";			//link vertical alignment
var linkFontFace = "Comic Sans MS";			//link font face
var linkFontSize = "3";			//link font size
var linkFontCol = "#000000";			//link font colour
var linkbgimage = "";//"../images/menuback.gif"	//link table background image
var delimCol = "#FFFF99";			//background colour for the delimiter
var delimAlign = "left";			//alignment for the delimiter
var delimValign = "top";			//vertical alignment for the delimiter
var delimGIF = "../../images/delimiter_star.gif";		//image source for the delimiter
var delimWidth = "16";