
function divObjectMoveTo(x,y) {
	if (x!=null) {
		this.x = x
		if (ns) this.css.left = this.x
		else this.css.pixelLeft = this.x
	}
	if (y!=null) {
		this.y = y
		if (ns) this.css.top = this.y
		else this.css.pixelTop = this.y
	}
}

divObject.prototype.moveTo = divObjectMoveTo