// JavaScript Document

(function($){

$(document).ready(function(){

	$('a.blank').click(function(){					
		window.open(this.href);
		return false;
	});

	// 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);
