/**
 * Geck image box viewer
 */
 

function geckRotator () {
	this.interval   = 2000;
}
	
geckRotator.prototype = {
	timer : undefined,
	
	animation : function () {},
	
	start : function () {
		$(this).everyTime( this.interval, 'controlled', function() {
			this.animation();
		});
    }
};
