﻿/*
	Home Page image rotation.
	Each Line represents an “Image” within the home page rotation
*/
var aSplash = [
/* Postion 1, Chefs on TV */
//'<img alt="" src="/images/homePage/rndImages/min/ChefsOnTV_608x300.jpg">',

/* Postion 2, Cakes - Winter */
'<a href="/catering/cakebook/Cake.php"><img alt="Custom Decorated Cakes" src="/images/homePage/rndImages/min/CakeBookOnlineOrdering_Winter2012_608x300.jpg"></a>',

/*
Postion 3,
This is the segment that has the 7 ways to save image, which provides you a link to the Sign Up
The DIV "" use the image "/images/homePage/rndImages/min/mywaytosave13.jpg" witch is set by the style class
Can Change by editing LINE 11 in"index.php" the elementstyle #MyWayRewards, Property url(/images/homePage/rndImages/min/7DaysSave_608x300_021312.jpg)
*/
'<div id="MyWayRewards">'+
	'<div>'+
		'<p>'+
			'<a href="https://secure.buschs.com/MyWay/Register.aspx?cmp=rewards">For MyWay Members<br><em>Sign Up Today!</em></a>'+
		'</p>'+
		'<p><em>Offers may change<br>without notice</em></p>'+
	'</div>'+
'</div>',

/* 
Postion 4, *** Last Section has NO COMMA at the end!! ***
This is the "We Carry Over 4000 Items"  
The DIV "" use the image "/images/homePage/rndImages/min/MI_Items.jpg" witch is set by the style class
Can Change by editing LINE 26 in"index.php" the elementstyle #MiItems, Property url(/images/homePage/rndImages/min/MI_Items.jpg)
*/
'<div id="MiItems">'+
	'<p>From cantaloupes to tomatoes, from Prairie Farms to Garden Fresh, we’re proud to bring you the very best Michigan has to offer.</p>'+
	'<h5>A Michigan company serving you.</h5>'+
'</div>'
]

/*
	This is not required but will help speed up the loading of the images & in return make for better customer experance.
	Image Pre loading
	ALL LINES end with ; 
*/
function preload() {
	/* these Top images are for the DIV Element Back Ground */ 
	(new Image()).src = '/images/homePage/rndImages/min/ChefsOnTV_608x300.jpg';
	(new Image()).src = '/images/homePage/rndImages/min/MI_Items.jpg';
	/**/
	(new Image()).src = '/images/homePage/rndImages/min/CakeBookOnlineOrdering_Winter2012_608x300.jpg';
	(new Image()).src = '/images/homePage/rndImages/min/7DaysSave_608x300_010912.jpg';
}
