function expand(thistag) {
  $('.faqs div.editor').hide('fast'); 
  var see = '#'+thistag;
  $(see).show('fast');    
}
$(document).ready( function() {
    $('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });    
});