jQuery(document).ready(function(){

	// Open external links in new window without using html target attribute
	jQuery('a.external').click(function(){
		window.open(this.href);
		return false;
	});
	
});
;

