$(document).ready(function (){
    $('.reportEx').click(function(){
        var ans = confirm('Are you sure this coupon is expired ?');
        if(ans){
            var link = $(this).attr('rel');
            $.get(link);
            return false;
        }
            else return false;
    });
	
	$().ajaxSuccess(function(){
		alert("Thanks for helping us keep the site updated!");
 });

});
