if(Object.isUndefined(Home))
	var Home = {};

if(Object.isUndefined(Home.Index))
	Home.Index = {};

Home.Index.Index = {
	
    initialize: function()
    {
    	Home.Index.Index.fixSlideshow.defer();
    },

    fixSlideshow: function()
	{
    	var slideshowE = $('home_slideshow_container').down('.slideshow');
    	var slideshow = slideshowE.retrieve('slideshow');
    	slideshow.options.slideOrder = [0, 1, 0, 2, 0, 3, 0, 4];
    	slideshow.options.delay = 6;
	}
};

document.observe('dom:loaded', Home.Index.Index.initialize);
