/* Open links with class 'new_window' in a... new window */

(function($){
    $(function(){
	$('.new_window')
	    .click(function(e){
		window.open(this.href);
		e.preventDefault();
	    })
            .attr({title : "Opens in a new window."})
	    .append($(' <img src="/page/-/images/external_link.png" alt="Opens in a new window.">'));
    });
})(jQuery);
