(function($){

  $.fn.animate_bullets = function(settings) {
    
    var config = {
      delay: 1000
    };
    
    var global_idx = 0;
    
    if (settings) $.extend(config, settings);
        
    this.each(
      function(){
        
        $(this).children('li').each(
          function(idx){
            global_idx++;
            
            $(this).hide();
            
            

             show_bullet(this,(1000 *global_idx));

 
            
          }
        );
          
      }    
    )    
    
    function show_bullet(obj, delay){
 
      setTimeout(function(){
        $(obj).show('slow',function(){$(this).removeAttr('style'); });
      }, delay );
    }
      
  }
})(jQuery);        