var nummenuitems = 15			//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,"Home","index.html","","","");
InitArray(2,"Church History", "history/index.html","","","");
InitArray(3,"Events", "events/index.html","","","");
InitArray(4,"Services", "services/index.html","","","");
InitArray(5,"Clergy", "clergy/index.html","","","");
InitArray(6,"Church Officials", "officials/index.html","","","");
InitArray(7,"Contacts", "contact/index.html","","","");
InitArray(8,"Monuments and Windows", "monuments/index.html","","","");
InitArray(9,"Churchyard", "churchyard/index.html","","","");
InitArray(10,"Chilham Connections and Businesses", "conbus/index.html","","","");
InitArray(11,"Refreshments", "refreshments/index.html","","","");
InitArray(12,"Travel to Chilham", "travel/index.html","","","");
InitArray(13,"Gallery of Chilham", "gallery/index.html","","","");
InitArray(14,"Records and Geneology", "records/index.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 = ""	//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_cross.gif";		//image source for the delimiter
var delimWidth = "16";
