 
$(document).ready(function () {
   
   // menu click 
    $(".menu_item").each(function() {
  
      $(this).click(function() {          
          window.location.href = '/index.php?id=' + this.id.replace('menu_item_', '');        
      }); 
       
    });
    
    $(".menu_item_search").each(function() {
  
      $(this).click(function() {          
          window.location.href = '/index.php?id=' + this.id.replace('menu_item_', '');        
      }); 
       
    });
    // ----------
    
  
});
