(function($) {
$(document).ready(function() {
	$("a.track").click(function() {
		$.getJSON("stats/tracker.php",
			{ file: $(this).attr("href"), nt: (new Date()).getTime() });
		setTimeout('window.location = "'+$(this).attr("href")+'";', 100);
		return false;
	});
});
})(jQuery);

