$(document).ready(function(){ 

$("#btnSkift").click(function() {
  if ($(this).val() == "Aktiver sortering") {
  $("img").click(function() { return false; });
  $(this).val("Deaktiver sortering");
  $(".row").sortable({
			connectWith: '.row'
		});
		} else {
		
		  var order = ""; 
        $("#sortable").children().each(function(i) {
          order += $(this).sortable("serialize") + "&";
        });
        order = order.replace('undefined&', '');
        if (confirm("Er du sikker på, at du vil opdatere?")) {
          $.post('imginfo.php?mode=updatePosition&' + order);
        }
        window.location.reload();
		  $(".row").sortable('destroy');
      $(this).val("Aktiver sortering");
    }
});

		$(".portlet").addClass("ui-widget ui-widget-content ui-corner-all");

		$(".row").disableSelection();

});
