<!--
// image_preloader.js: Preloads the sites images
//
// Copyright (c) 2008 Aculade, LLC.
//    All rights reserved.
//
//    You may not remove this header.
//    You may edit and use this code for all purposes so long as this
//       header remains intact.
//    You may not sell or receive profits for this script alone.
//    You may use this script as a function of a commercial, for-profit
//       site design as long as this header remains unedited.

		if (document.images) {
			// Preload all page elements
			preload_lyre = new Image(111,100);
			preload_lyre.src = "misc/lyre.jpg";
			preload_banner = new Image(300,300);
			preload_banner.src = "misc/chapofyear.png";
			preload_banner_IE = new Image(300,300);
			preload_banner_IE.src = "misc/chapofyear.gif";
			preload_carnation = new Image(300,86);
			preload_carnation.src = "misc/carnation.png";
			preload_carnation_IE = new Image(300,86);
			preload_carnation_IE.src = "misc/carnation.gif";
			// Preload side nav hover icon
		   preload_littlelyre = new Image(20,20);
			preload_littlelyre.src = "misc/little_lyre.jpg";
			// Preload page titles for all pages
			preload_home = new Image(590,75);
			preload_home.src = "misc/home_title.png";
			preload_history = new Image(590,75);
			preload_history.src = "misc/history_title.png";
			preload_education = new Image(590,75);
			preload_education.src = "misc/education_title.png";
			preload_recruitment = new Image(590,75);
			preload_recruitment.src = "misc/recruitment_title.png";
			preload_philanthropy = new Image(590,75);
			preload_philanthropy.src = "misc/philanthropy_title.png";
			preload_involvement = new Image(590,75);
			preload_involvement.src = "misc/involvement_title.png";
			preload_members = new Image(590,75);
			preload_members.src = "misc/members_title.png";
			preload_pictures = new Image(590,75);
			preload_pictures.src = "misc/pictures_title.png";
			preload_links = new Image(590,75);
			preload_links.src = "misc/links_title.png";
		}
-->