jQuery(function($) {

  $('#access').live('mouseenter mouseleave', function(event) {

    if (event.type === 'mouseover') {
      $(this).animate({top: 0 }, 200);
    }

    if (event.type === 'mouseout') {
      $(this).animate({top: -24 }, 400);
    }

  });

  $('.post blockquote').append('<span class="quote"></span>');

});
