function showonlyone(thechosenone) {
     $('div[name|="artbox"]').each(function(index) {
          if ($(this).attr("id") == thechosenone) {
               $(this).show(677); 
          }
          else {
               $(this).hide(600);
          }
     });
}
