jQuery(document).ready(function($) {
	$('#sidebar a[href*=".pdf"], #sidebar a[href*=".zip"]').click(function(){ //Tracks PDF and Zip file downloads
		var fileName = this.href.replace(/http:\/\//ig, '');
		if(_gaq.push) {
			_gaq.push(['_trackEvent','download',fileName]); //Conforms with the tracking done by Yoast's Google Analytics plugin.
		}
	});
});
