$(document).ready( function() {
	
	$(".clip-remove").bind("click", function() {
		var deleteClip = $(this);
		$.ajax({
	   		type: "DELETE",
	   		url: deleteClip.attr("href"),
	   		success: function(msg){
				deleteClip.parent().parent().fadeOut("slow", function(){
					$(this).remove();
				});
	     		
	   		}
	 	});
		return false;
	});
});