

var Basket = {};

Basket.SCROLL_INTERVAL = 15;

Basket.up = function(interval){
	if(!this.container)this.container=compono.getByID("basket");
	this.container.scrollTop -= this.SCROLL_INTERVAL;
}

Basket.down = function(interval){
	if(!this.container)this.container=compono.getByID("basket");
	this.container.scrollTop += this.SCROLL_INTERVAL;
}

