$(function() {
  //Hide it to start
  $('#donate_options_layover li:odd').addClass("white_option");
  $('#donate_options_layover').hide()

  //Set up the trigger
  $('#donate_options').click(function() {

    window.location = $('#donate_options_trigger').attr('href');
    
    /*
    if ($.browser.msie) {
      $('#donate_options_layover').show().css({
        zIndex: 99
      })
    }
    else {
      $('#donate_options_layover').fadeIn(150).css({
        zIndex: 99
      })
    }


    return false;
    */

  })

  /*
  donate_out = "";

  $('#donate_options_layover').mouseleave(function() {

    donate_out = setTimeout(function() {



      if ($.browser.msie) {
        $('#donate_options_layover').hide(function() {
          clearTimeout(donate_out)
        })
      }
      else {
        $('#donate_options_layover').fadeOut(150, function() {
          clearTimeout(donate_out)
        })
      }


    }, 1000)

  })

  $('#donate_options_layover').mouseenter(function() {

    clearTimeout(donate_out)

  })
  */


})
