// JavaScript Document
// This script is to set the site structure so pages can be
// built with the correct colors and nav menus.

// Home Page
var homePage = new Object();

homePage.id = 'index';
homePage.fileName = 'index.html';
homePage.navLabel = 'Home';
homePage.label1 = 'Home';
homePage.label2 = 'Page';
homePage.banner = 'images/bg02.jpg';
homePage.color = '#999966';
homePage.tiles = new Array('images/tile53.jpg','images/tile07.jpg','images/tile42.jpg','images/tile11.jpg','images/tile44.jpg');
homePage.subLabels = new Array();
homePage.subLinks = new Array();

// About
var aboutPage = new Object();
aboutPage.id = 'about';
aboutPage.fileName = 'about.html';

aboutPage.navLabel = 'About';
aboutPage.label1 = 'About';
aboutPage.label2 = 'Atalanta';
aboutPage.banner = 'images/bg25.jpg';
aboutPage.color = '#996666';
aboutPage.tiles = new Array('images/tile78.jpg','images/tile77.jpg','images/tile65.jpg','images/tile37.jpg','images/tile47.jpg');
aboutPage.subLabels = new Array('Mission','Board');//,'Management','Organization'
aboutPage.subLinks = new Array('about.html','about_board.html');//,'about_management.html','about_organization.html'

// Projects
var projectsPage = new Object();
projectsPage.id = 'projects';
projectsPage.fileName = 'projects.html';
projectsPage.navLabel = 'Projects';
projectsPage.label1 = 'Atalanta';
projectsPage.label2 = 'Projects';
projectsPage.banner = 'images/bg26.jpg';
projectsPage.color = '#336699';
projectsPage.tiles = new Array('images/tile23.jpg','images/tile31.jpg','images/tile17.jpg','images/tile03.jpg','images/tile55.jpg');
projectsPage.subLabels = new Array('Youth','Stables','Dairy','Produce');
projectsPage.subLinks = new Array('projects.html','projects_stables.html','projects_dairy.html','projects_produce.html');

// News
var newsPage = new Object();
newsPage.id = 'news';
newsPage.fileName = 'news.html';
newsPage.navLabel = 'News';
newsPage.label1 = 'Atalanta';
newsPage.label2 = 'News';
newsPage.banner = 'images/bg13.jpg';
newsPage.color = '#CC9966';
newsPage.tiles = new Array('images/tile06.jpg','images/tile68.jpg','images/tile24.jpg','images/tile09.jpg','images/tile71.jpg');
newsPage.subLabels = new Array();//'News','Story 2','Story 3','Story 4'
newsPage.subLinks = new Array();//'news.html','news_story1.html','news_story3.html','news_story4.html'

// Contact
var contactPage = new Object();
contactPage.id = 'contact';
contactPage.fileName = 'contact.html';
contactPage.navLabel = 'Contact';
contactPage.label1 = 'Contact';
contactPage.label2 = 'Atalanta';
contactPage.banner = 'images/bg04.jpg';
contactPage.color = '#999999';
contactPage.tiles = new Array('images/tile79.jpg','images/tile76.jpg','images/tile72.jpg','images/tile58.jpg','images/tile21.jpg');
contactPage.subLabels = new Array('Details','Join','Volunteer','Visit','Donate');
contactPage.subLinks = new Array('contact.html','contact_join.html','contact_volunteer.html','contact_visit.html','contact_donate.html');

var siteSections = new Array(homePage, aboutPage, projectsPage, contactPage);//newsPage, 

