		/*
			eclipse-creative.com
			20091212 tomc
		*/
		
		// ------------------------------------------------------------------------------------------
		/*
			OFFER SLIDES
		*/
		// ------------------------------------------------------------------------------------------
		var OfferSlider = new Class({
			Implements		: Options,
			options			: {
				slides		: []
			},
			activeSlide			: 0,
			
			/*
				CONSTRUCTOR
			*/
			initialize: function(options){
				this.setOptions(options);
				
				if( this.options.slides.length ){
					this.options.slides.each(function(el,i){
						el.set('tween', {
							duration	: 1200,
							transition	: Fx.Transitions.Quad.easeInOut
						});
						el.setStyles({
							display		: 'block',
							opacity		: (i==0) ? 1 : 0
						});
					});
					
					this.nextSlide.periodical(5500, this);
				}
			},
			
			nextSlide:function( index ){
				this.options.slides.each(function(slide){
					slide.fade(0);
				});
				
				this.activeSlide++;
				if( this.activeSlide >= this.options.slides.length )
					this.activeSlide = 0;
				this.options.slides[ this.activeSlide ].fade(1);
			}
		});
		
		// ------------------------------------------------------------------------------------------
		/*
			ENTRY
		*/
		// ------------------------------------------------------------------------------------------
		window.addEvent("domready", function(){
			
			new OfferSlider({
				slides		: $$("#offer_block .element")
			});
			
			
			
		});