/**
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 = {
		'DSCF0238.jpg': { caption: '' },
		'DT-Henderson-041.jpg': { caption: '' }, 
		'K02A013-Garrard-Co.jpg': { caption: '' }, 
		'K06K018-Logan-Co-(4).jpg': { caption: '' },
 		'FS-12-SC-117-Halley-House-0.jpg': { caption: '' },
		'K06K021-Newtown-Pike-Fayett.jpg': { caption: '' }, 
		'MM176_8.jpg': { caption: '' },
		'3.gif': { caption: '' }
	     	    };
	    var myShow = new Slideshow('show', data, { delay: 2000, duration: 4000, captions: false, controller: false, height: 225, hu: 'assets/structures/', width: 300 });
	  });
	//]]>
