<!--
/* SVN FILE: $Id: external.js 265 2010-01-17 09:20:50Z Chris $ */
/**
 * Support opening links in a new window with valid XHTML
 *
 * XHTML STRICT does not permit the target attribute in markup.
 * To allow markup to be valid yet open remote links in a new window
 * or tab, links with a different hostname have their target attribute
 * set to "_blank".
 * Works for http, https, and ftp protocols.
 *
 * @copyright    Copyright 2008 PBM Web Development - All Rights Reserved
 * @package      js
 * @since        V1.0.0
 * @version      $Revision: 265 $
 * @modifiedby   $LastChangedBy: Chris $
 * @lastmodified $Date: 2010-01-17 09:20:50 +0000 (Sun, 17 Jan 2010) $
 */
jQuery(document).ready(function(){
  jQuery('a[href^="http://"]')
	  .attr({
	    target: "_blank",
	    title: "Opens in a new tab or window"
	  });
  jQuery('.print').click(function(){window.print(); return false;});
});
// -->