$(document).ready (function(){

  $(".browseSelect").bind ('mouseover', function() {
    $(this).addClass("active1");
  });

  $(".browseSelect").bind ('mouseout', function() {
    $(this).removeClass('active1');
  });

}); // End of $(document).ready

