$(function(){

		var domain = "http://" + window.location.hostname;
		
		// track all outbound links  	
		$('a[href^="http"]:not([href^="'+domain+'"])').click(function(event){
			_gaq.push(['_trackEvent', 'Outbound', document.location.href, $(this).attr('href')]);
		}); 
		
		// track all downloads   
		$('a[href*="downloads/"]').click(function(event){   	
			_gaq.push(['_trackPageview', $(this).attr("href")]);			
		});
		  
});
