/**
 * Causes links with the class "external" to open in a new window. This
 * simulates the behavior of target="_blank" (which is illegal in XHTML
 * Strict).
 * @author Travis Miller <travis@electrumdigital.com>
 */
jQuery( function() {
	jQuery("a.external").click( function( e ) {
		e.preventDefault();
		window.open( this.href );
	} );
} );

