/**
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 = {
		'Toy-Pot-from-Marmet.jpg': { caption: '' },
		'Hill.jpg': { caption: '' }, 
		'pot.jpg': { caption: '' }, 
		'aos2.jpg': { caption: '' },
		'biface_drawing.png': { caption: '' }, 
		'11PK1718-four.jpg': { caption: '' },
		'11PK1718-020.jpg': { caption: '' }
	     	    };
	    var myShow = new Slideshow('show', data, { delay: 2000, duration: 4000, captions: false, controller: false, height: 225, hu: 'assets/archaeology/', width: 300 });
	  });
	//]]>
