jQuery(document).ready(function() {
		jQuery('a[href$=".pdf"]').click(function() {

		var t = this.title;
		if ( t == "" ) {
			t = this.href.substr(this.href.lastIndexOf('/') + 1 );
		}
		var c = 'PDF';
		var e = 'download';
		var d = this.href.split('/');
		
		if ( d.length > 1 ) {
			var h = d[2];
			
			if (  h != 'www.nationalforest.org' && h != 'nationalforest.org' && 
				  h != 'www.thenationalforest.org' && h != 'thenationalforest.org') {
				c = h;
				e = 'external download';
			}
			else {
				c = d[d.length - 2];
			}
		}

		if ( c == 'pdfs' ) {
			c = 'visit pdfs';
		}

		_gaq.push(['_trackEvent', c, e, t]);
	});
});
