 $(document).ready(function(){ 
   $(".two a").hoverIntent(down,up);
//   $(".two a").hoverIntent(down2,up2);
   $(".three a").hoverIntent(down3,up3);
  });

  function down(){ $(".tab1").show();}
  function up(){$('.tab1').hide();}
//  function down2(){ $(".tab2").show();}
//  function up2(){ $(".tab2").hide();}
  function down3(){ $(".tab3").show();}
  function up3(){ $(".tab3").hide();}
