$(document).ready(function() {

     function addMegas(){
        $(this).children('div').show();
      }



 	function removeMegas(){
 	$(this).children('div').hide();
 	   }





 var megaConfigs = {
     interval: 0,
      sensitivity: 4,
      over: addMegas,
      timeout: 0,
      out: removeMegas
      };
 $(".phoio").hoverIntent(megaConfigs)

});

