// This pops open a video box
function slideonlyone(thechosenone) {
     $('div[title|="videobox"]').each(function(index) {
          if ($(this).attr("id") == thechosenone) {
               $(this).fadeIn('slow', function(){});
          }
          else {
               $(this).fadeOut(1,function(){});
          }
     });
}
