// PDF Clicktracking
// Alle Klicks auf PDF-Dokumente werden unter dem Pfad 
// /clicktracking/domain_und_pfad/dateiname mitgetrackt

$(document).ready(
	function() {

		$("a[href$='.pdf']").click(
			function() {
				var href = this.href;
				// Replace unneeded information
				href = href.replace(/http:/, '');
				href = href.replace(/\/\//, '');
				if (href[0] == '/') href = substr(1, href.length);
				// track the click
				pageTracker._trackPageview ('/clicktracking/' + href);
			}
		);

	}
);

