/*use this JS to setup whatever "event listeners" you need
	first arg = where the event listener should be attached
	sec arg = what event listener should be attached
	third arg = what function to be called*/
eventHandler(window, "load", boxSetUp);

/*sets up box rotation*/
function boxSetUp(){
	/*first arg = whatItIs: ad or testimony
		sec arg = numOfThings: number of things available to generate from
		third arg = numOfBoxes: number of boxes on page to rotate
		fourth arg = timeOut ie flipSpeed
		fifth arg = beginning Location of the thing
		sixth arg = ending Location of the thing*/
	flipBoxes("ad", 9, 4, 10001, "inc/ads/", ".ad.inc" );
}
