// JavaScript Document
var switchImageState = "Small";
function switchTopImage()
{
	if(switchImageState=="Small")
	{
		var numTopGraphicHeight = 446;
		var objTopGraphic = document.getElementById('ContainerTopFlashSub');
		var strTopGraphic = objTopGraphic.style.backgroundImage;
		strTopGraphic = strTopGraphic.replace(/Small/g,"Large");
		objTopGraphic.style.backgroundRepeat="no-repeat";
		objTopGraphic.style.backgroundImage = strTopGraphic;
		objTopGraphic.style.height = numTopGraphicHeight+"px";
		switchImageState = "Large";
	}
	else if(switchImageState=="Large")
	{
		var numTopGraphicHeight = 153;
		var objTopGraphic = document.getElementById('ContainerTopFlashSub');
		var strTopGraphic = objTopGraphic.style.backgroundImage;
		strTopGraphic = strTopGraphic.replace(/Large/g,"Small");
		objTopGraphic.style.backgroundRepeat="no-repeat";
		objTopGraphic.style.backgroundImage = strTopGraphic;
		objTopGraphic.style.height = numTopGraphicHeight+"px";
		switchImageState = "Small";
	}
}
