   var headlines = $$("#content h3");
    for (var index = 0; index < headlines.length; ++index) {
      var item = headlines[index];  
      Element.insert(item, "<a name='anchor_" + index + "'>");
      if (index != 0) {
          Element.insert(item, {before:"<div class='top_icon'><a" + " href='" + "#top'><img" + "  src='/resources/images/design/buttons/top.png'" + "></div>"});
      }
    };

