(function()
{
	$ektron('a').click(function(event)
	{
		var anchor = $ektron(this);
		var href = anchor.attr('href');

		var matches = href.match(/\.pdf$/i);
		var url = '';
		
		if (matches != null || href.indexOf('showcontent.aspx') > -1)
		{
			var url = '/pdf-download';
			var filePath = href.replace(/^https?::\/\/[^/]+\//i, '');
			
			if (filePath.indexOf('/') != 0)
			{
				filePath = '/' + filePath;
			}

			url = url + filePath;

			if (pageTracker)
			{
				pageTracker._trackPageview(url);
			}
		}
	});
})();
