// JavaScript Document

var newwindow;
function popup(url)
{
	newwindow=window.open(url,'name','height=300,width=300,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}

$(function($) {
	$('a').not('a[href*="tri-county.org"]').click(function(){

		try {
			// Get the href url and toss out the "http://"
			var href = $(this).attr('href');
			if ( href.indexOf("://") > 0 ) {
				//$(this).attr('target','_blank');
				$(this).attr('href', 'http://www.tri-county.org/outbound.php?url='+ href);
			}
		} catch( e ) {}
    });
});
