$(document).ready(function () {
  version = parseInt($.browser.version);
  if ($.browser.msie && version < 7 && $.cookie('ie6') != 1) {
	  $.post('custom/ieLayer', {}, function (data) {
      var width = $('body').width();
      var height = $('body').height();
      $('body').append(data);
      $('#ie_layer').css('left', (width - 500) / 2);
      $('#ie_layer').css('top', 100);
    });
  }

  $('.donkey').live('click', function () {
    $("#ie_layer").remove();
    $.cookie('ie6', 1);
    return false;
  })
});
