// When the document is ready set up our sortable with it's inherant function(s)
$(document).ready(function() {
    $("#utopia_pictures").sortable({
        handle : '.utopia_picture_move',
        update : function () {
            var photoSortUrl = document.location.href+'&orderphotos=true&fullscreen=true';
            $.ajax({
                  type: "POST",
                  cache: false,
                  dataType: "text",
                  url: photoSortUrl,
                  data: $('#utopia_pictures').sortable('serialize')
            })
            //$("input#utopia_picture_order_log").val($('#utopia_pictures').sortable('serialize'));
        }
    });
});

$(document).ready(function() {
	$("#utopia_pictures li a.thumblink").fancybox({
		'zoomSpeedIn':	0, 
		'zoomSpeedOut':	0, 
		'overlayShow':	true
	});
});
