var Moveable = {
	obj: null,
	init: function(obj) {
		obj.move = this.move;
	},
	move: function(x,y) {
		var o = Moveable.obj = this;
        o.style.top = y +"px";
        o.style.left = x + "px";
	}
};