var $jx = jQuery.noConflict();

$jx(document).ready(function(){ 	
	  function slideout(){
  setTimeout(function(){
  $jx("#response").slideUp("slow", function () {
      });
    
}, 2000);}
	
    $jx("#response").hide();
	$jx(function() {
	$jx("#list ul").sortable({ opacity: 0.8, cursor: 'move', update: function() {
			
			var order = $jx(this).sortable("serialize"); 
			$jx.post("index.php?option=com_gallery&view=peoples&Itemid=9&task=update_people", order, function(theResponse){
				$jx("#response").html(theResponse);
				$jx("#response").slideDown('slow');
				slideout();
			}); 															 
		}								  
		});
	});

});	

