/* Yeah, the positions are hard-coded.
 * Big deal.
 * It's a placeholder page for fuck's sake.
 * Why are you even here?
 */

if (typeof(jQuery) != 'undefined' && jQuery == $) {
  $(function() {
    $('#email').hide();

    $('h1').mouseover(function() {
      if (!$('#email').is(':visible')) {
        $('#email')
          .css({
            'display': 'inline',
            'opacity': 0,
            'top': '42%'
            })
          .animate({
            'opacity': 1,
            'top': '45%'
            }, 500);
      }
    });
  });
}

