//-------------------------------------------------------------------
// START: PAGE SETTINGS
//-------------------------------------------------------------------
	
	// page set up
	var iLoadBackgroundDelay = 150; // time between each background/white box load
	var iLoadBackgroundEaseSpeed = 300; // time it takes to fade in the white box
	var iLoadBackgroundEaseType = "easeInCubic"; // penner functions
	var iLoadBackgroundOpacity = .25;
	
	var iLoadForegroundStartWhen = 4; // when the foreground should start loading (after x number of background images loaded)
	var iLoadForegroundDelay = 300; // time between each person is loaded
	var iLoadForegroundEaseSpeed = 500; // time it takes to fade in the heads
	var iLoadForegroundEaseType = "easeInCubic"; // penner functions
		
	// after load, play settings
	var iPlaySpotlightWhen = 5; // after which image should the animations start?
	
	var iPlayUnloadDelay = 50; // time - in milliseconds - images are removed
	var iPlayUnloadSpeed = 750; // time it takes the images to transition out
	var sPlayUnloadType = "easeOutCubic"; // penner funtions
	var iPlayUnloadRemainingWhen = 2; // after which image should the rest just fade out
	
	var iPlayLoadDelay = 200; // time - in milliseconds - images are shown
	var iPlayLoadSpeed = 500; // time it takes the images to transition in
	var sPlayLoadType = "easeInCubic"; // penner funtions	
	
	// image opacities
	var iPlayOpacityOn = 1;
	var iPlayOpacityOff = .25;
