function sendPointsConfig(tid, eid, special)
{ 
	$.ajax(
	{
		url: '/ajax_points/points/',
		type: 'post',
		data: { tid:tid, eid:eid, special:special },
		success: function(response)
		{
			eval(response);
		},
		error: function(response)
		{
			
		}
	});
}

$(document).ready(function()
{
	$('div.open_ads a:not([href$="#sports-directory"])').click(function(){
		
		href = $(this).attr("href");
		img = $(this).children('img').attr("src");
		
		$.ajax({
			
			url: '/ajax_points/banner/',
			type: 'post',
			data: { href:href, img:img },
			success: function(response)
			{
				eval(response);
			},
			error: function(response)
			{
			
			}
			
		});
		
	});
	
});
