$(document).ready(function(){
	$(".approve").click(function(){
		//alert($(this).attr("href"));
		$(this).parent().parent().fadeOut("slow");
		approveLink($(this).attr("href"));
		return false;
	});
	$(".reject").click(function(){
		//alert($(this).attr("href"));
		$(this).parent().parent().fadeOut("slow");
		approveLink($(this).attr("href"));
		return false;
	});
});

function approveLink(strLink){
	$.ajax({
	  url: strLink,
	  cache: false
	});
}
