$(document).ready(function() {

	$('.draggable').draggable({
		revert: true
	});

	$('.resizable').resizable();

	$('.resizable_all').resizable({handles: 'all'});

	$('.ajax-post').click(function() {
		document.body.style.cursor = 'progress';
		setTimeout('document.body.style.cursor = "auto"', 3000);
	});
});