$(document).ready(function(){
	$(".sort").sortable({ opacity: 0.6, cursor: 'move', update: function() {
		var order = $(this).sortable("serialize"); 
		$.post("index.php?ss", order, function(theResponse){
			//$("#contentRight").html(theResponse);
		}); 															 
	}								  
		});
		
		$(".sort2").sortable({ opacity: 0.6, cursor: 'move', update: function() {
			var order = $(this).sortable("serialize"); 
			$.post("index.php?sq", order, function(theResponse){
				//$("#contentRight").html(theResponse);
			}); 															 
		}								  
			});
			
	$("#table_quotes").tablesorter(); 
});
