/**
 * Causes links with the class "targetblank" 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>
 */
$( function() {
	$("a.targetblank").click( function( e ) {
		e.preventDefault();
		window.open( this.href );
	} );
} );

