Site = {
	start: function(){
		// check for slide show pro area and setup
		if( $('sspcont') ){
			Site.setSSP();
		}
	},
	setSSP: function(){
		$$('#sspcont div')[0].parentNode.setStyle('width',$$('#sspcont div')[0].getStyle('width'));
		$$('#sspcont div')[0].parentNode.setStyle('height',$$('#sspcont div')[0].getStyle('height'));
		var myFO = { movie: "" + $$('#sspcont div')[0].id + ".swf", width:"" + $('sspcont').getStyle('width') + "", height:"" + $('sspcont').getStyle('height') + "", majorversion:"9", build:"0", wmode:"transparent", bgcolor:"#000000", id:"pageGallery" };
		UFO.create(myFO, "" + $$('#sspcont div')[0].id + "");
	},
	nothing: 0
}
Window.addEvent('domready',Site.start);