function onload_brandImgGenerator(){
	/*
	 *	This function runs the javascript slideshow for the "brand-img" on the homepage. This is here 
	 *		temporarily for the 1.5 release of Abercrombie & Kent. This only exists on the new 
	 *		homepage, but will eventually exist on every page and most likely be replaced with a flash 
	 *		slide-show. The first "if" conditional checks to see if the "brand-img" exists.  An
	 *		interval is set to run every 4 seconds to switch images. Every image will preload first
	 *		before it is displayed. That means the code inside the "else" clause will be used until 
	 *		all images have been loaded. After they have been loaded only the code inside the "if"
	 *		statement will execute. The "else" clause loads a new image and stores the image object
	 *		in the array "arr", so it can be referenced later when switching images in the "if"
	 *		clause.
	 *		
	 */

	//STANDARD IMAGE ROTATION
	/*var arr = [];
	var i = -1;
	function imgGen(){
		if(document.getElementById("brand_mrkg") != null){
			var intervalId = setInterval(function(){
				i = (i < 7)? i +=1 : i = 0;
				if(i < arr.length){
					document.getElementById("brand_mrkg").src = arr[i].src;

				}else{
					clearInterval(intervalId);
					var img = document.createElement("img");
					img.onload = function(){
						arr.push(this);
						document.getElementById("brand_mrkg").src = this.src;
						imgGen();

					};
					img.src = "/assets/images/brand_mrkg_home/img_" + i + ".jpg";

				}

			}, 4000);

		}

	}
	imgGen();*/
	
	
	//BROCHURE PROMOTION IMAGE ROTATION
	var arr = [];
	var i = -1;
	function imgGen(){
		if(document.getElementById("brand_mrkg") != null){
			var intervalId = setInterval(function(){
				i = (i<2)? i+=1 : i=0;
				if(i < arr.length){
					document.getElementById("brand_mrkg").src = arr[i].src;

				}else{
					clearInterval(intervalId);
					var img = document.createElement("img");
					img.onload = function(){
						arr.push(this);
						document.getElementById("brand_mrkg").src = this.src;
						imgGen();

					};
					img.src = "/assets/images/brand_mrkg_home/brochure_promotion/img_" + i + ".jpg";

				}

			}, 4000);

		}

	}
	imgGen();

}
