$(document).ready(function(){

      $('a.new-window').click(function(){
				window.open(this.href);
				return false;
		});

		$('#links .home-manu a').click(function(){
				window.open(this.href);
				return false;
		});
	
}); 