// <![CDATA[
	new Draggable('loggedInBox',{
		endeffect:function() {
			new Ajax.Request('handler.php', {
				method: 'post',
				parameters: {action: 'updateCoords', left: $('loggedInBox').style.left, top: $('loggedInBox').style.top},
				
				onSuccess: function(transport) {
					// do nothing	
				}
			});
		}
	});
// ]]>