﻿//
// Project list 
// 1st field = name of project page (eg. darley_road.htm)
// 2nd field = project category string contains one or more letters corresponding to revelant category where
//             r = residential, c = commercial, l = leisure, l = community, v = conversion, m = mixed use
// 3rd field = brief description of project
// NB: 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

var projList = new Array(
new Array ("darley_road.htm","r","Darley Road, Old Trafford:- a contemporary remodelling of a Victorian house."),
new Array ("porth_crigyll.htm","r","Porth Crigyll, Rhosneigr:- new build residential development in Anglesey overlooking Rhosneigr bay."),
new Array ("regency_house.htm","r","Regency House, Manchester:- combining and remodelling two existing flats to provide a single 3-bedroom apartment."),
new Array ("sankey_street.htm","rm","Sankey Street, Warrington:- mixed use project to provide church and private apartments."),
new Array ("palace_gf.htm","cl","The Palace Hotel, Manchester:- refurbishment of ground floor public areas to Grade II* listed building."),
new Array ("palace_beds.htm","c","The Palace Hotel, Manchester:- refurbishment of hotel bedrooms in Grade II* listed building."),
new Array ("whitchurch_rhc.htm","l","Whitchurch Rugby &amp; Hockey Club:- New Spectator Stand &amp; Ground Stores."),
new Array ("idea_centre.htm","vm","Idea Centre, Salford:-  mixed use conversion of warehouse to create digital workshops and private apartments."),
new Array ("chorlton_mill.htm","rvm","Chorlton Mill, Manchester:-  mixed use conversion of grade II listed mill building."),
new Array ("heald_green.htm","l","Heald Green One Stop Centre:-  new build village medical centre."),
new Array ("unicorn.htm","cl","Unicorn Grocery:-  improvements to energy efficiency of grocery store."),
new Array ("penthouse_CM.htm","r","Penthouse, Chorlton Mill, Manchester:-  contemporary roof top extension to grade II listed building."),
new Array ("lockside_mill.htm","rv","Lockside Mill, Todmorden, Lancashire:- The conversion of the existing mill building together with a new build residential scheme adjacent, form a key part of the regeneration of the canalside corridor in Todmorden.")
);
// this sorts the project list into alphabetical order - comment out if own order preferred
projList.sort();

