try {
var firstTracker = _gat._getTracker("UA-11853452-1");
//Additional Event tracking (outbound links)
	$(document).ready(function(){
		filetypes = /\.doc$|\.xls$|\.exe$|\.zip$|\.pdf$|\.mp3$|\.psd$/i;
		$('a').each(function(){
// Sending Mail Clicks
			if ($(this).attr("href").match(/^mailto\:/i)) {
				$(this).click(function() {
					firstTracker._trackEvent('InternalLink','SendMail',$(this).attr("href"));
				})
			}
// Track downloads
	     	   else if ($(this).attr("href").match(filetypes)) {
				$(this).click(function() {
					firstTracker._trackEvent('InternalLink','DownLoads',$(this).attr("href"));
				})
       			 }
    		});
// Track ExternalLink
		$('a').filter(function() {
			return this.hostname && this.hostname !== location.hostname
		}).click(function(){
			firstTracker._trackEvent('ExternalLink','Click',$(this).attr("href"));
		});
	});
firstTracker._trackPageview();

var secondTracker = _gat._getTracker("UA-11653872-1");
secondTracker._trackPageview();

} catch(err) {}
