$(document).ready(function(){	$('a[rel=_blank]').click(function(event){		event.preventDefault();		if (this.href.indexOf(String(window.location.host)) < 0) //don't track internal pop-ups as external links		{			_gaq.push(['_trackPageview', '/external/' + (this.title == '' ? this.href: this.title)]);		}        window.open(this.href);	});		$('.scrollpane').jScrollPane(	{			showArrows: true,			horizontalGutter: 10		});});
