//Arrays to store top and left positions
function moveIt(obj) {
if(obj.style.left != obj.style.width) {
	obj.style.left = obj.style.width;
} else {
	obj.style.left = '0pt';
}
}
