
var flipId = 1;

function InitBannerTimer()
{
	setTimeout("RotateBanners()",5000);
}

function RotateBanners()
{
	var flipBanner = document.getElementById("FlipBanner");
	flipBanner.src = "images/Home_FlipBanner" + flipId + ".png";	
	flipId ++;
	
	if (flipId >= 4) { flipId = 1; }
	
	InitBannerTimer();
}

function SetFlipBanner(id)
{


	var flipBanner = document.getElementById("FlipBanner");
	flipBanner.src = "images/Home_FlipBanner" + id + ".png";


}

function HandleMouseOver(sButton)
{
	if (sButton != null)
	{
		var oButton = document.getElementById(sButton);
		oButton.src = "images/" + sButton + "_on.png";
	}
}

function HandleMouseOut(sButton)
{
	if (sButton != null)
	{
		var oButton = document.getElementById(sButton);
		oButton.src = "images/" + sButton + "_off.png";	
	}
}
