WRAPPER = function(rootStr){
	var thisObj = this;
	this.root = $(rootStr).get();
	this.listener = $('leftPage').get();
	
	this.pos = 1;
}
WRAPPER.prototype = {
	init:function(){
		var thisObj = this;
		$(this.listener).addEvent('mouseover', function(){thisObj.move('open');});
		$(this.listener).addEvent('mouseout', function(){thisObj.move('close');});
	},
	move:function(soll){
		if(soll=='open')
			var sollLeft = 0;
		else
			var sollLeft = -100;
		
		var t = morph(this.root).setStyles([['left', sollLeft + 'px']]).start('', '20', '');
		t.toggle();
		
	}
}
