var Slideshow = new Class({
	el: null,
	arr: null,
	initialize: function()
	{
		this.el = $('slideshow');
		this.arr = [];
		this.start();
	},
	start: function()
	{
	}
});
var slideshow = null;
window.addEvent('domready', function(){
	slideshow = new Slideshow();
	slideshow.arr = [['01-cruises'], ['02-packages'], ['03-hotels'], ['04-tours'], ['05-honeymoon'], ['06-guides']];
});
