﻿ $(document).ready(function() {
	$(".RemoveListing").click(function() {
		$(this).parents(".Listing").hide("slow");
		var uid = $(this).attr("rel");
		
		$.ajax({
			type: "POST",
			url: "/Tools/FavoriteListings/ws.asmx/Remove",
			data: '{"uid":"'+ uid + '"}',
			dataType: "json",
			contentType: "application/json"
		});
		
		return false;
	});
});
