$(function(){
	/**
	 * Open link with class 'external' in new window
	 */ 
	$('a.external').click( function(){
		window.open( this.href );
		return false;
	});	
});
