/************************************** Splendid *************************************
* Created By:		Jill Yosar
* Creation Date:	13 October 2009
* Edited ----------------------------------------------------------------------------
*      By:              On:  
* Description -----------------------------------------------------------------------
*      This file handles rotation of the AdCommerce banners on the contact us and
*	   thankyou pages
*      Uses JQuery.
*      Example: 
*           
*
* Functions -------------------------------------------------------------------------
*       
*       
*       
* Event Handlers --------------------------------------------------------------------
*       
*       
*       
**************************************************************************************/

/********************************** Global Variables *********************************/
// Set Arrays/Variables
	var adCommBanner = new Array();
	var preloader = new Array()
	
$(document).ready(function(){

	// Generates a random 
	var item = Math.floor(Math.random()*adCommBanner.length)
	
	for(var i=0; i<adCommBanner.length; i++)
	{
		var img = new Image();
		img.src = adCommBanner[i];
		preloader.push(img);
	}
	
	$(".ad img").attr("src", preloader[item].src);
	
});



