// JavaScript Document

$(document).ready(function() {
    // console.log('ready!');
    $('#javascriptwarning').css('display', 'none');
  
    // $(".help a").hover(showhelp, hidehelp);
    
    
    $(".help a").hover(showhelp, hidehelp);
    $(".help a").focus(showhelp);
    $(".help a").blur(hidehelp);
    
    function showhelp(event) {
      $(this).next("em").stop(true, true).animate({opacity: "show", top: "-60"}, "slow");
      event.preventDefault(); 
    }
    
    function hidehelp(event) {
      $(this).next("em").animate({opacity: "hide", top: "-70"}, "fast");
      event.preventDefault(); 
    }    
  }      
    
);

