 /* 
 		IMAGE ROTATOR CONFIGURATION FILE
 
 		These panes define the available images for the image rotator to use
 		
	 		pane 0 (upper left)
			pane 1 (upper right)
			pane 2 (lower right)
			pane 3 (lower left) 
		
		You can add and remove your own images by adding or removing items from the array. Format the array as follows
		
			var aPane# = new Array( 
								item1,
								item2,
								item3
								);
			
		Each item is itself an array defined as
		
			new Array('name of image','path/to/image.jpg')
			
		Remember to escape any apostrophe's in the name like so
		
			new Array('Jeff\'s simulations','images/mynewimage.jpg')  
			
		Avoid using image files with spaces or special characters in the filename
		This is a unix/linux system so case is important  ('case.jpg' is different than 'Case.jpg')
			
*/
 
 var aPane0=new Array(
 	new Array('Simulation','images/imgrot1-s.jpg'),
 	new Array('Simulation','images/imgrot1-2.jpg'),
 	new Array('Simulation','images/imgrot1-1.jpg'),
 	new Array('Simulation','images/imgrot1-4.jpg')
	 );
	 
 var aPane1=new Array(
 	new Array('Simulation','images/imgrot2-1.jpg'),
 	new Array('Simulation','images/imgrot2-s.jpg'),
 	new Array('Simulation','images/imgrot2-3.jpg'),
 	new Array('Simulation','images/imgrot2-4.jpg')
	 );
	 
 var aPane2=new Array(
 	new Array('Simulation','images/imgrot3-1.jpg'),
 	new Array('Simulation','images/imgrot3-2.jpg'),
 	new Array('Simulation','images/imgrot3-s.jpg'),
 	new Array('Simulation','images/imgrot3-4.jpg')
	 );

 var aPane3=new Array(
 	new Array('Simulation','images/imgrot4-2.jpg'),
 	new Array('Simulation','images/imgrot4-3.jpg'),
 	new Array('Simulation','images/imgrot4-s.jpg')
	 );	 	 
