// scripts for Texas Alliance For Life Rally site
// January 2007 PantheonDesign.com

/* ========================================================================================================== */
/* Random image displayer ----------------------------------------------------------------------------------  */
/* Code that needs to run before the page loads ------------------------------------------------------------  */

/* This code sets up the sidebar slide show ----------------------------------------------------------------  */

	/* declare a few global variables																		  */
	theNumOfImages			=	11;
	theRandomImageNumber	=	0;
	theImageToShow			=	"";
	completeImageTag		=	"";
	
	// select a random header image and build the img tag 
	// It will be written into the HTML as the page is loaded.
	
	theRandomImageNumber	=	Math.floor(Math.random() * theNumOfImages) + 1 ;	// never choose zero	
	theImageToShow			=	"image" + theRandomImageNumber + ".jpg";			// respect the naming convention
	completeImageTag 		=	"<img src=\"resources/2006pictures/" + 
								theImageToShow + 
								"\" title=\"Texas Rally for Life 2006\"" +
								">";

/* This code sets up the homepage image -------------------------------------------------------------------  */

	/* declare a few global variables																		  */
	theHomePageNumOfImages			=	20;
	theHomePageRandomImageNumber	=	0;
	theHomePageImageToShow			=	"";
	completeHomePageImageTag		=	"";
	
	// select a random header image and build the img tag 
	// It will be written into the HTML as the page is loaded.
	
	theHomePageRandomImageNumber	=	Math.floor(Math.random() * theHomePageNumOfImages) + 1 ;		// never choose zero	
	theHomePageImageToShow			=	"TexasRallyForLife" + theHomePageRandomImageNumber + ".jpg";	// respect the naming convention
	completeHomePageImageTag 		=	"<img src=\"resources/homepagephotos/" + 
										theHomePageImageToShow + 
										"\" title=\"Texas Rally for Life 2006\"" +
										" id='homepageimage'" +
										" width='320' height='240' style='float:left; margin-right:.5em;'>";


/* end of code that needs to run before the page loads -----------------------------------------------------  */
/* ========================================================================================================== */
// end of CODE