function initObjects()
{
	try {
		if (SWFObject && document.getElementById("TopText")) {
			var toptext = new SWFObject("/public/swf/top-text.swf", "TopText", "605", "85", "7", "#FFFFFF");
			toptext.addParam("wmode", "opaque");
			toptext.write("TopText");
		}

		if (SWFObject && document.getElementById("SplashText")) {
			var lefttext = new SWFObject("/public/swf/left-text.swf", "SplashText", "460", "185", "7", "#CD001D");
			lefttext.addParam("wmode", "opaque");
			lefttext.write("SplashText");
		}

		if (SWFObject && document.getElementById("SplashPhoto")) {
			var splashphoto = new SWFObject("/public/swf/photo.swf", "SplashPhoto", "355", "185", "7", "#CD001D");
			splashphoto.addParam("wmode", "opaque");
			splashphoto.write("SplashPhoto");
		}

		if (SWFObject && document.getElementById("FooterText")) {
			var footertext = new SWFObject("/public/swf/footer-text.swf", "FooterText", "660", "60", "7", "#FFFFFF");
			footertext.addParam("wmode", "opaque");
			footertext.write("FooterText");
		}


	}
	catch(e){}
}

function ChangeImage(id, filename)
{
	document.getElementById(id).src = '/public/images/'+filename;
	//alert(document.getElementById(id).src);
}