$(document).ready(function(){
	$('tr.offer_row a').click(function(){
		var data = $(this).parents('tr.offer_row').metadata();
		$.post(
			'http://www.bestdiscountsandcoupons.com/offer/increment_clicks.html',
			data,
			function(responseText){},
			"html"
		);
	});
});

