var ImageLoad = 
[
['index.htm', 	'graphics/argus-pegasus-ipa.jpg', 	'Pleasantly hoppy, Snow Day carries the subtle chocolate and caramel flavors of a new brewing malt known as Midnight Wheat. The Styrian Golding, Centennial and Cascade hops bring the backbone of hoppy bitterness to complement the roasty undertones. This beer is the deep garnet of a roasted walnut and presents a creamy tan head, floating artfully atop. Snow Day is bold and hoppy, drinkable and strong. It reminds you to enjoy the unexpected.'			],
['index.htm', 	'graphics/MGD.jpg', 	'Miller Genuine Draft delivers a fresh from the tap taste through its proprietary cold-filtered four times brewing process.'			],
['index.htm', 	'graphics/BLUE_MOON.jpg', 	'Blue Moon Belgian White is a refreshing, medium-bodied, unfiltered Belgian-style wheat ale spiced with fresh coriander and orange peel for a uniquely complex taste and an uncommonly smooth finish. Cloudy white, opaque in appearance, this style of beer has been brewed in Belgium for about 300 years. Blue Moon is traditionally served with a slice of orange to complement the orange peel used in the brewing process.'		],
['index.htm', 	'graphics/COORSLT.jpg', 	'Coors Light is the fourth best-selling beer in the U.S. Coors Lights unique frost-brewing process locks in a taste as cold as the Rockies.'	],
['index.htm', 	'graphics/HACKER.jpg', 	'Hacker-Pschorr Weisse has a cloudy appearance, characteristic of wheat beer. The cloudy appearance is due to yeast that is retained in the beer. A centrifuge process is used with traditional wheat beers to retain the yeast instead of the typical filtering process used with beers that are clear in appearance.'			],
['index.htm', 	'graphics/LITE.jpg', 	'Miller Lite is the ultimate light beer, brewed from the finest malted barley, select cereal grains and choicest hops for superior taste in a less-filling beer.'				],
['index.htm', 	'graphics/WARSTEINER.jpg', 	'Dark in color. Medium bodied. Light notes of chocolate, molasses, hints of nut and coffee'			],
['index.htm', 	'graphics/BM_Winter.jpg', 	'Brewed in late fall to be ready for winter, Full Moon Winter Ale conjures up images of a snowy cabin in the woods and goes great with any holiday meal or celebration.'			],
['index.htm', 	'graphics/SA_WINTER.jpg', 	'Bold and rich with a touch of holiday spice, deep ruby color and the magical aroma which promises something special on the tongue. The cinnamon, ginger, and hint of citrus from the orange peel blend with the roasty sweetness of the malts to deliver a warming, spicy flavor. On the palate Samuel Adams Winter Lager is rich and full bodied, robust and warming.'			]
];

var ImageCount		= 9;			//  *****  Change this to the total number of images loaded above  ***** 		//	
var ImageDelay		= 9000;			//  *****  Set this to the delay interval desired.  5000 = 5 seconds.			// 
var LinkTarget		= "_self"		//  *****  Defines where you want linked page to open. _self, _blank, _top, etc	//
var ImageIndex		= 0;			//  DO NOT ALTER	//
var FirstLoad 		= 0;			//  DO NOT ALTER	//
var QuickStartID 	= 0;  			//  DO NOT ALTER	//
var htmlString 		= ""			//  DO NOT ALTER 	//

//  This function rotates the banner  //
function ImageChange()

{		

htmlString = '<center>';
htmlString = htmlString + '<font face = "Verdana" size="2">';		//  Font and Font Size for caption may be changed here	//
htmlString = htmlString +'<a target="';
htmlString = htmlString + LinkTarget;
htmlString = htmlString + '" href="';
htmlString = htmlString + ImageLoad[ImageIndex][0];
htmlString = htmlString + '"><img border="0" src="';				//  Image border size may be changed here				//	
htmlString = htmlString + ImageLoad[ImageIndex][1];
htmlString = htmlString + '"></a><br>';
htmlString = htmlString + ImageLoad[ImageIndex][2];
htmlString = htmlString + '</font>';
htmlString = htmlString + '</center>';		

document.getElementById('MagicImage').innerHTML = htmlString; 				

if(ImageIndex == ImageCount - 1)		//  This statement increments image displayed and resets if displaying last image  //
{										
ImageIndex= 0;																				
}																								
else																							
{																								
ImageIndex++;																					
}																										

if(FirstLoad == 0)						//  Determins if this is the first time function has run.   // 
{
SlowFinish();
}

}
//  End Funtion  //

//  This function ensures first banner is displayted without a delay  //
function  QuickStart()
{
QuickStartID=setInterval("ImageChange()", 1000);
}
//  End Funtion  //																		

//  This function sets display rate to user defined speed  //
function SlowFinish()
{
clearInterval(QuickStartID);
FirstLoad = 1;
setInterval("ImageChange()", ImageDelay);	 
}
//  End Funtion  //

QuickStart()
