Moving = {
	OrigTop : 0,
	OrigStyleTop : 22,
	offersbox : null,
	
	Init : function() {
		this.offersbox = $('offersbox');
		this.OrigTop = this.offersbox.cumulativeOffset().top;
		Event.observe(window, 'scroll', this.Scrolling.bind(this));
	},
	
	Scrolling : function(){
		var ScrollTop = (window.pageYOffset || document.body.scrollTop || document.documentElement.scrollTop);
		
		if(this.OrigTop < ScrollTop){
			this.offersbox.style.top = String(ScrollTop - this.OrigTop + this.OrigStyleTop) + "px";
		} else {
			this.offersbox.style.top = String(this.OrigStyleTop) + "px";
		}
	}
}

Event.observe(window,'load',Moving.Init.bind(Moving));