$(function() {
  /*   $('#fbox, a').hover(function(){
       $('.f1').fadeIn(5000);
      $('.f1').fadeTo(1000,100);
       $('.f1').fadeOut(7500);
   } );      */

   $('#fbox').hover(function(){
       $('.f1').fadeIn(2000);
       $('.f1').animate({opacity: 1.0}, 5000);
       $('.f1').fadeOut(3000);
   });

});
