/*
---
script: RegioAnimation.js
description: The Scroller scrolls smoothly through the given Elements
copyright: Copyright (c) 2011 REGIOCAST
authors: [Marcel Domke]

requires: 
  core:1.3.0: 
  - Class.Extras
  - Element.Event
  - Fx.Scroll
  - Array
provides: [Carousel]
browsers: FF,IE
...
*/

var RegioAnimation = new Class({
	
	Implements: [Options, Events],
	Extends: Regio,
	
	options: {
		buttons: null
	},
	
	initialize: function(element, options) {
		this.setOptions(options);
	}
	
});
