$(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(); 
				$('.addRemToggle').removeClass('sprite-add').addClass('sprite-rem');
			}
		});
	});
		
	$(".Remove").click( function(){
		var thisId = $(this).attr('listingId');
		var thisRLS = $(this).attr('listingRls');
		$.ajax({ 
			type:"POST", 
			url:"ajax.cfm", 
			data:"ajaxType=remove&id="+thisId+"&rls="+thisRLS, 
			success: function(){ 
				$('#remove'+thisId).hide(); 
				$('#save'+thisId).show();
				$('.addRemToggle').removeClass('sprite-rem').addClass('sprite-add');
			}
		});
	});
});
