$(document).ready(function() {
	
	i = 100;
	
	$(".draggable").draggable({start: function(e, ui) {
		
		i++;
		$(this).css("z-index", i);
		$(this).css("cursor", "url('include/cursor-closed.gif'), move");
		
	}, drag: function(e, ui) { 
		
		$("#position").text($(this).position().top + ", " + $(this).position().left);
				
		}, stop: function(e, ui) {
			
			$(this).css("cursor", "url('include/cursor-open.gif'), move");
							
		}});
});
