$(document).ready( function(){
	$(".Save").click( function(){
		var thisId = $(this).attr('listingId');
		var thisRLS = $(this).attr('listingRls');
		$.ajax({ 
			type:"POST", 
			url:"ajax.cfm", 
			data:"ajaxType=save&id="+thisId+"&rls="+thisRLS, 
			success: function(){ $('#save'+thisId).hide(); $('#remove'+thisId).show(); }
		});
	});
		
	$(".Remove").click( function(){
		var thisId = $(this).attr('listingId');
		var thisObj = $(this);
		$.ajax({ 
			type:"POST", 
			url:"ajax.cfm", 
			data:"ajaxType=remove&id="+thisId, 
			success: function(){ $('#remove'+thisId).hide(); $('#save'+thisId).show(); }
		});
	});
});
