/*requires jquery-1.3.2.min.js*/

/*
	Requires th jQuery library
*/
$(function() {
	$("a.LinkCounter").each(function() {
		$(this).click(function() {
			var cID = $(this).attr("rel");
			var url = resolveUrl();
			$.get(url, { CounterID: cID });
		});
	});
});

function resolveUrl() {
	var url = "../";
	if (location.pathname.toLowerCase().indexOf("extranet") != -1) 
		url = "../../";

	return url + "Code/IncrementCounter.aspx";
}
