

ProductScroller = new Class({
	Implements: Options,
	options: {

	},

	initialize: function(container, elements, options) {
		this.setOptions(options);
		this.container = $(container);
		if(!container) return;

		this.elements = $splat(elements);
		if(!this.elements.length) return;
	},

	prev: function() {
		

	},

	next: function() {
		new Fx.Scroll(this.container, {
			duration: 500
		}).start( this.container.getScroll().x + this.container.getWidth(), 0 );

	},

	prev: function() {
		new Fx.Scroll(this.container, {
			duration: 500
		}).start( this.container.getScroll().x - this.container.getWidth(), 0 );

	}

});



