/*!
 * startGallery.js written by Bill Fisher 2008
 *
 * developed for White Lotus Design / ParentingHelp123.org / WithinReach
 *
 * this script starts the slideshow 
 * (note: slideshow is dependant on jd.gallery.js and mootools.1.11.js) 
 *
 */

//the domready event is dependant on mootools
window.addEvent('domready', startGallery);

function startGallery() {
	var myGallery = new gallery($('myGallery'), {
		timed: true,
		delay: 7000,
		embedLinks: true,
		showArrows: false,
		showCarousel: false,
		showInfopane: false
	});
}

