			function initSlideshow()
			{
				startSlideshow({
					'id'	: 'slideshow1',	// container
					'width'	: 244,			// container width
					'height': 348,			// container height
					'speed'	: 1000,			// time to transition from item to item
					'delay'	: 4000,			// time to spend on each item
					'startDelay': 0,		// time to wait before starting
					'frameRate': 50			// the higher this number, the more processor
											// intensive, but smoother the transition is
				});
			}
			
			// setup onload
			if (window.addEventListener)
				window.addEventListener('load', initSlideshow, false);
			else if (window.attachEvent)
				window.attachEvent('onload', initSlideshow);
			else
				window.onload = initSlideshow;