var timeout_array = new  Array();

$(function(){ 
   $(".pod").mouseenter(function(){
   
   
      $(this).find(".pod-menu").map(function() {
         clearTimeout( timeout_array[ parseInt( $( this ).attr('id').substr( 3 ) ) ] );
      }); 

      
      
      $(".pod-menu").hide();
      $( this ).find(".pod-menu").show();
      
   });
      
   $(".pod").mouseleave(function(){
      var menu_id = $( this ).find(".pod-menu").attr('id');
      timeout_array[ parseInt( menu_id.substr( 3 ) ) ] = setTimeout("$('#" + menu_id + "').hide();", 300);

   });
   
   $(".pod-menu").mouseenter(function(){
      clearTimeout(timeout_array[ parseInt( $( this ).attr('id').substr( 3 ) ) ] );
   });   

});


