function resizeBanner()
{
	var vMovie = window.document.getElementById("banner");
	if(window.screen.availWidth == 1024)
	{
		vMovie.style.width = 1005;
		vMovie.style.height = 118;
	}
	else
	{
		vMovie.style.width = 780;
		vMovie.style.height = 92;
	}
}
function resizeDiv()
{
	var vDiv = window.document.getElementById("flashflood");
	if(window.screen.availWidth == 1024)
	{
		vDiv.style.width = 790;
	}
	else
	{
		vDiv.style.width = 550;
	}
}
function zoomin()
{
	window.document.images["flashfloodimage"].width += 40;
}
function zoomout()
{
	window.document.images["flashfloodimage"].width -= 40;
}
