jQuery(document).ready(function(){
	jQuery("#hoverlink").hover(
      function () {        
		//jQuery('#hoverbox').animate({opacity: "show", top: "20"}, "slow");
		jQuery('#hoverbox').fadeIn("slow");
      }, 
      function () {        
		//jQuery('#hoverbox').animate({opacity: "hide", top: "30"}, "fast");
		jQuery('#hoverbox').fadeOut("slow");
      }
    );
});
