/**
Script: myslideshow.js
	Slideshow - A javascript class for Mootools to stream and animate the presentation of images on your website.

Dependencies:
	Mootools 1.2 Core: Fx.Morph, Fx.Tween, Selectors, Element.Dimensions.
	Mootools 1.2 More: Assets.
	slideshow.js
*/

window.addEvent('domready', function(){
	 var data = {
	  '1.jpg': {}, 
	  '2.jpg': {}, 
	  '3.jpg': {}, 
	  '4.jpg': {}
	};
	if($('show')){
	 var pfad = $('bwpath').value;
	 var myShow = new Slideshow('show', data, {delay:4500, duration:2000, overlap: true, controller: false, height: 90, hu: pfad, thumbnails: false, width: 171});
    }
});