/**
 * @author yetik
 */
var Alpha_Scroller = new Class({
	left_offset: 211, //dlugosc przesuniecia
	visible_boxes: 4, //ilosc widocznych boxow
	
	initialize: function () {
		
		this.img = $('baners').getElements('a');
		this.count = this.img.length;
		this.current = this.count - 1;
				
		//usaw samoczynne przesuwanie sie w prawo
		this.prev.periodical (7000, this)
		
	},
	
	prev: function () {
		
		this.img[this.current].set('tween', { duration: 2000 }).fade('out')
		if (!(this.current > 0)) 
			this.current = this.count;
		
		
		this.img[this.current-1].set('tween', { duration: 2000 }).fade('in')
		this.current--;		
		
	},
	
	next: function () {
	
	}
})



window.addEvent ('domready', function () {
	//var anim_gallery = new Anim_Gallery;
	try {
		new Alpha_Scroller;
	} catch (e) {}

})

