//
// MENU ITEMS
// TO ADD A NEW MENU ITEM :- Add a line to MenuList or ExhibList below.
// NB: PLEASE NOTE THE SYNTAX USED CAREFULLY  
// Each list item must be separated by a comma BUT no comma required after last list item and before closing parenthesis  - it will cause syntax error
// Please use &rsquo; in place of an apostrophe (eg St Ann&rsquo;s Church NOT St Ann's Church) to prevent javascript error 

// Main Navigation - this array generates the main menu across top of screen
// 1st field = Text you want to show in menu  (eg "Home" )
// 2nd field = Actual name of web page (eg "index.htm")

var MenuList = new Array(
new Array ("Home","index.htm"),
new Array ("Future Exhibitions","future-exhibitions.htm"),
new Array ("Contact","contact.htm")
);

// Previous Exhibitions List - this array generates the previous exhibitions menu on left of screen
// 1st field = Text you want to show in menu  (eg "The Lowry" )
// 2nd field = Actual name of web page (eg "lowry.htm")

var PrevExhibList = new Array(
new Array ("Castlefield Gallery","castlefield-gallery.htm"),
new Array ("Edgar Wood Building","edgar-wood-building.htm"),
new Array ("The Lowry","lowry.htm"),
new Array ("Wendy Levy Gallery","wendy-levy-gallery.htm")
);



