 $(document).ready(function(){
$(".hd_menu_in ul li").hoverIntent(
  function () {
    $(this).find('.hd_menu_drop').slideDown("slow");
    $(this).find('.hd_menu_elm a').addClass('bg_ad1');
  },
  function () {
	$(this).find('.hd_menu_drop').slideUp("slow");
	$(this).find('.hd_menu_elm a').removeClass('bg_ad1');
	
  }
);

  });
  
 $(document).ready(function(){
$(".ft_menu_in ul li").hoverIntent(
  function () {
    $(this).find('.ft_menu_drop').slideDown("slow");
    $(this).find('.ft_menu_elm a').addClass('bg_ad1');
  },
  function () {
	$(this).find('.ft_menu_drop').slideUp("slow");
	$(this).find('.ft_menu_elm a').removeClass('bg_ad1');
	
  }
);

  });
  
