/**
Script: Slideshow.js
	Slideshow - A javascript class for Mootools to stream and animate the presentation of images on your website.

License:
	MIT-style license.

Copyright:
	Copyright (c) 2008 [Aeron Glemann](http://www.electricprism.com/aeron/).

Dependencies:
	Mootools 1.2 Core: Fx.Morph, Fx.Tween, Selectors, Element.Dimensions.
	Mootools 1.2 More: Assets.
*/

//<![CDATA[
	  window.addEvent('domready', function(){
	    var data = {
	      '1.jpg': { caption: '' }, 
		  '2.jpg': { caption: '' }, 
	      '3.gif': { caption: '' }
	    };
	    var myShow = new Slideshow('show', data, { delay: 1000, duration: 2000, captions: false, controller: false, height: 375, hu: 'assets/pisgah/images', width: 500 });
	  });
	//]]>
