/**
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 = {
		'DSC_0201-copy.jpg': { caption: '' },
		'002-Facade-&-SW-elev.jpg': { caption: '' }, 
		'01-Facades-&-E-elev-of-133-.jpg': { caption: '' }
	     	    };
	    var myShow = new Slideshow('show', data, { delay: 2000, duration: 4000, captions: false, controller: false, height: 225, hu: 'assets/compliance/', width: 300 });
	  });
	//]]>