// JavaScript Document

window.onload = function () {
	// Place startup code here
	if(document.getElementById("photogallery")) {
		var gallery = new SWFObject("slideshow.swf", "gallery", "550", "430", "7", "#333341");
		gallery.addVariable("xmlfile", "images.xml");
		gallery.write("photogallery");
		var photogallery = document.getElementById("photogallery");
		photogallery.style.display = 'inline';
	}
}