jQuery.noConflict();  
jQuery(document).ready(function(){	
	
	//code tells GA an outside link was clicked and opens a new window
	var domain = window.location.href.split('/')[2];
	jQuery('a[href^=http://]').filter('a:not([href*="'+domain+'"])').filter('a:not([href^="http"])').each(function(){
		jQuery(this).click(function(e){
			var page = this.href.replace(/^http:\/\//i, '/suppTrack/outboundLinks/');
			//alert('link');
			urchinTracker(page);
			window.open(jQuery(this).attr("href"), "outsideSite");
			return false;
		});
	});
	
	//code tells GA a multimedia file was clicked and opens a new window
	jQuery('a').filter('a:not([href*=".asp"])').filter('a:not([href*=".php"])').filter('a:not([href*=".html"])').filter('a:not([href*=".shtml"])').filter('a:not([href*=".cfm"])').filter('a:not([href^="#"])').each(function(){ //])").not("[href^=#]") 
		jQuery(this).click(function(e){
			if(this.href.charAt(this.href.length) == "" && this.href.charAt(this.href.length - 1) != "/") {
				var page = this.href.replace(/^http:\/\//i, '/suppTrack/multimedia/');
				urchinTracker(page);
				window.open(jQuery(this).attr("href"), "multimedia");
				return false;
			}
		});
	});
});<!-- 

 -->