//
// INSTRUCTIONS
// TO ADD A NEW PREVIOUS EXHIBITION :- 
// 1. Add a line to ExhibList array below.
// 2. Create a PhotoList array using PhotoList_template below. 
// 3. Add new photos to images folder sized 300 x 230 saving as file names used in step 2.
// 4. Open TEMPLATE-prev-exhib.htm - save as file name used in step 1.
// 5. Modify PhotoList parameter, gallery name, text author, gallery address, exhibition date and exhibition text. 
// 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 ExhibList = 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")
);

// Photo List - one of these lists required for home page and each Previous Exhibition 
// 1st field = Caption you want to show for the photo  (eg "Down Canal Street" )
// 2nd field = Actual name of photo (eg "down-canal-street.gif")

var PhotoList_template = new Array(
new Array ("photo 1st text","photo-1st-name.gif"),
new Array ("photo 2nd text","photo-2nd-name.gif"),
new Array ("photo last text","photo-last-name.gif")
);
var PhotoList_homepage = new Array(
new Array ("Cornerhouse and Cinema One","ch-cinema-1.gif"),
new Array ("Central Library and Town Hall","central-lib-town-hall.gif"),
new Array ("Central Library, Manchester","central-lib-manchester.gif"),
new Array ("Love Saves the Day","love-saves-the-day.gif"),
new Array ("Manto, Canal Street, Manchester","manto-canal-st-mcr.gif"),
new Array ("The Lime Tree, West Didsbury","the-lime-tree-w-didsbury.gif"),
new Array ("Urbis, View from the big wheel","urbis-view-from-big-wheel.gif"),
new Array ("Urbis, View from the the studio","urbis-view-from-the-studio.gif")
);
var PhotoList_future = new Array(
new Array ("Bridgewater Hall","bridgewater-hall.gif"),
new Array ("Urbis","urbis.gif")
);
var PhotoList_castlefield = new Array(
new Array ("Metz and Manto - Canal Street","metz-manto-canal-st.gif"),
new Array ("Down Canal Street","down-canal-street.gif"),
new Array ("Cinema One - Curtain","cinema-1-curtain.gif"),
new Array ("Cornerhouse Cinema One and Café Bar","ch-cinema-1-&-cafe-bar.gif"),
new Array ("Cornerhouse from Cinema One","ch-from-cinema-1.gif")
);
var PhotoList_edgarwood = new Array(
new Array ("St Ann&rsquo;s Church","st-anns-church.gif"),
new Array ("The Mitre","the-mitre.gif"),
new Array ("Pret-a-Manger, Grinch, Cross St Chapel","pret-a-m-grinch-cross-st-ch.gif"),
new Array ("The Edgar Wood Building","egdar-wood-building.gif")
); 
var PhotoList_lowry = new Array(
new Array ("Blue Bed","blue-bed.gif"),
new Array ("Cornerhouse","cornerhouse.gif"),
new Array ("JFK Airport","jfk-airport.gif"),
new Array ("Metz and Manto","metz-and-manto.gif"),
new Array ("New Union and Manto","new-union-&-manto.gif"),
new Array ("Tail Fins","tail-fins.gif")
);
var PhotoList_wendylevy = new Array(
new Array ("Love Saves the Day","love-saves-the-day.gif"),
new Array ("Central Library, Manchester","central-lib-manchester.gif"),
new Array ("Central Library and Town Hall","central-lib-town-hall.gif"),
new Array ("In Bed - Red Bed","in-bed-red-bed.gif")
);



