/*If you want a link to open in a new window. To keep in compliance with html 4.1 strict doc type, give the <a> tag, rel="external" */
$(document).ready( function() {
    
    $('A[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
    
});
