
// This file contains most of the Google Analytics related scripts

$(function () {
	function logPDFView (href) {
		var pdfUrl = new netr.URI('/pdf.html');
		pdfUrl.query = {
			page: href,
			from: document.location.href
		};
		try {
			if (_gaq) {
				_gaq.push(['_trackPageview', pdfUrl.toString()]);
			}
		} catch (e) {}
	}

	$('body').delegate('a:pdf-link', 'click', function (e) {
		logPDFView($(e.target).attr('href'));
	});
});
