// Simple Slideshow for Rotating Images
var Slideshow = Class.create();

Slideshow.prototype = {
	initialize: function() {
		// alert('slideshow init');
	}
}

Event.observe(window, 'load', function(){var slidshow = new Slideshow();})
