// random headers by department

// headers array hash key is the full Page Name -- it must match the Page Name under Page Properties

// the FIRST Page Name to match will be used

// pics array contains one or more images
// EX: var picsVisitors = ['header-photo=visitors-1.jpg', 'header-photo=visitors-2.jpg'];

// images names must NOT contain spaces

// images go in the main 'images' directory -- if using a subdirectory, the subdirectory name must appear in the file name

var headers = [];

var picsDefault = ['header-photo.jpg'];
headers['Default'] = picsDefault;

// EDIT / ADD HEADERS HERE

var picsNewcastle = ['header-photo-departments-community-newcastle.jpg'];
headers['Newcastle + Brechin Neighbourhood Plan'] = picsNewcastle;

var picsSouthend = ['header-photo-departments-community-southend.jpg'];
headers['South End Neighbourhood Plan'] = picsSouthend;

var picsEconDev = ['econdev/header-photo-econdev-cruise.jpg', 'econdev/header-photo-econdev-construction.jpg', 'econdev/header-photo-econdev-seaplane.jpg', 'econdev/header-photo-econdev-kayaks.jpg', 'econdev/header-photo-econdev-harbour.jpg'];
headers['Economic Development'] = picsEconDev;

var picsParks = ['header-photo-parks-recreation.jpg'];
headers['Parks, Recreation and Culture'] = picsParks;

var picsResidents = ['header-photo-residents.jpg'];
headers['Residents'] = picsResidents;

var picsBusiness = ['header-photo-business.jpg'];
headers['Business'] = picsBusiness;

var picsVisitors = ['header-photo-visitors.jpg'];
headers['Visitors'] = picsVisitors;

var picsMunicipalHall = ['header-photo-municipal-hall.jpg'];
headers['Municipal Hall'] = picsMunicipalHall;

var picsDepartments = ['header-photo-departments.jpg'];
headers['Departments'] = picsDepartments;

