// JavaScript Document  		console.log(err);

	function initGoogleTrack(href) {
		try {
			var pageTracker = _gat._getTracker("UA-7182890-1");
			pageTracker._trackPageview(href);
			} 
		catch(err) {
	
			}
		}
		
	initGoogleTrack(location.href);
		
	$(document).ready( function() {

		$("a[href$='.pdf'], a[href$='.doc', a[href$='.zip'], a.track_download").click( function() {										
			initGoogleTrack(this.href);
			});																			
		
		});