// Document Ready
jQuery(document).ready(function() { 
 
		// open a link in a new window
		jQuery('a.external').click(function(){
        window.open(this.href);
        return false;
    });

});



