$(document).ready(
  function(){
    if ($.browser.msie) $('select.wide')
      .bind('focus mouseover', function() {
        $(this).addClass('expand').removeClass('clicked');
      })
      .bind('click', function() {
        $(this).toggleClass('clicked');
      })
      .bind('mouseout', function() {
        if (!$(this).hasClass('clicked')) {
          $(this).removeClass('expand');
        }
      })
      .bind('blur', function() {
        $(this).removeClass('expand clicked');
      });
  }
  );
