$(document).ready(function() {

$('a').click(function() {
var $a = $(this);
var href = $a.attr('href');



if ((href.match(/\.(pdf)$/i)) && (!href.match(document.domain))) {


var category = 'outgoing';
var gEvent = 'click';
var label = href;


_gaq.push(['_trackEvent', category, gEvent, href]);
} else {
	if ( href.match(/\.(doc|pdf|xls|ppt|zip|txt|vsd|vxd|js|css|rar|exe|wma|mov|avi|wmv|mp3)$/i) ) {
	var category = 'download';



	var gEvent = 'click';
	var label = href;  	
	_gaq.push(['_trackEvent', category, gEvent, href]);
	} else {
		if ( href.match(/^mailto:/i) ) {
		var category = 'mailto';
		var gEvent = 'click';
		var label = href;  	
		_gaq.push(['_trackEvent', category, gEvent, href]);
		}
	}
		
}	    
		
});	

});

