
(function($){

$(document).ready(function(){
	// open the external links in a new window.
	$('a[@rel=external]').click(function(){
		window.open(this.href, '_blank');
		return false;
	});
	$('#content01 form[@class=external]').each(function(){
		this.target = '_blank';
	});
});

})(jQuery);
