$(document).ready(function(){
    
	//External Links
	$('a.new-window').click(function(){
		window.open(this.href);
		return false;
	});
	
});