$(document).ready(function(){
	// external links should be marked as rel=external
	$("a[rel=external]").bind("click",function(e) {
		window.open($(this).attr("href"));
		e.preventDefault();
	});
	
	// in site links that need a new window get a class newWin
	$("a.newWin").bind("click",function(e) {
		window.open($(this).attr("href"));
		e.preventDefault();
	});
});
