/* 	Global arrays for Kate Schutt site
	Barking Dog Studios
	David Lachapelle
	Last Modified: February 20th, 2007
*/

/*	Array of panels and their respective sizes.
	Notes: 	The second elements in the array has to be the width of the preceeding panel
			Please do not modify the third element in the array
*/
var panels = Array(
					Array("panel1",0,0),
					Array("panel2",1425,72),
					Array("panel3",2708,133),
					Array("panel4",3515,203),
					Array("panel5",4667,268),
					Array("panel6",5650,335),
					Array("panel7",6671,402),
					Array("panel8",7668,468),
					Array("panel9",8784,529)
					);

/*	Array of containers to and the data to load into them 
*/
var containers = Array(
						Array("container_panel1", "panels/panel_1.php"),
						Array("container_panel2", "panels/panel_2.php"),
						Array("container_panel3", "panels/panel_3.php"),
						Array("container_panel4", "panels/panel_4.php"),
						Array("container_panel5", "panels/panel_5.php"),
						Array("container_panel6", "panels/panel_6.php"),
						Array("container_panel7", "panels/panel_7.php"),
						Array("container_panel8", "panels/panel_8.php"),
						Array("container_panel9", "panels/panel_9.php")
						);
/*	Array of images to force loading of before the panels begin loading
	This ensures that the navigation is visible before we start requesting large amounts
	of data.
*/
var images = Array(
					Array("panels/images/panel_02.gif",false),
					Array("panels/images/panel_03.gif",false),
					Array("panels/images/panel_04.gif",false),
					Array("panels/images/panel_05.gif",false),
					Array("panels/images/panel_06.gif",false),
					Array("panels/images/panel_07.gif",false),
					Array("panels/images/panel_08.gif",false),
					Array("panels/images/panel_09.gif",false),
					Array("panels/images/panel_01_off.png",false)
					);
/* Scrolling state */
var scrolling = false;
/* Root site regular expression to use for the image preloader */
var root_site = /http:\/\/kateschutt.barkingdogstudios.com\//;

