$(document).ready(function(){

	
	// Open links with class "external" in new window
    $('a.external').click(function(){
        window.open(this.href);
        return false;
    });

}); //end document
