/* 
 * Code to keep XHTML compliant just add class="new-window" to every external link
 */
$(document).ready(function() {
    $('a.new-window').click(function(){
       window.open(this.href);
       return false;
    });
});

