
  var top_five = [{"pageviews":13549,"name":"Colorful New Snake Species Discovered","img":"<img src=\"http://www.ouramazingplanet.com/images/i/3846/i84/trbd--7199_LR_copy.jpg?1326135798\" alt=\"Atheris matildae Tanzania\" />","path":"/2238-colorful-snake-species-discovered.html","formatted":"13,549"},{"pageviews":9372,"name":"Weird Wildlife: The Real Animals of Antarctica","img":"<img src=\"http://www.ouramazingplanet.com/images/i/3749/i84/tardigrade-111202-02.jpg?1324446275\" alt=\"antarctic animals, antarctica's wildlife, antarctic wildlife, animals, nematodes, tardigrades, rotifers, springtails, extreme animals\" />","path":"/2177-weird-wildlife-real-animals-antarctica-penguins.html","formatted":"9,372"},{"pageviews":4950,"name":"Rare Caterpillar-like Horizontal Earthquake Discovered","img":"<img src=\"http://www.ouramazingplanet.com/images/i/141/i84/himalaya-everest-100609-02.jpg?1320167271\" alt=\"himalaya-everest-100609-02\" />","path":"/2269-rare-caterpillar-horizontal-earthquake-discovered.html","formatted":"4,950"},{"pageviews":4278,"name":"Ocean's 8: Satellite Snaps Stunning Photo of Bloom","img":"<img src=\"http://www.ouramazingplanet.com/images/i/3905/i84/bloomMER_FR_20111202_51029_H1.jpg?1326754364\" alt=\"Ocean algal bloom in the shape of a figure 8\" />","path":"/2277-satellite-photo-algal-bloom-figure8.html","formatted":"4,278"},{"pageviews":3458,"name":"Tropical Storm Dando Hits Mozambique","img":"<img src=\"http://www.ouramazingplanet.com/images/i/3887/i84/8uMOw.jpg?1326727928\" alt=\"Tropical Depression Dando makes landfall over Mozambique.\" />","path":"/2272-tropical-storm-dando-hits-mozambique.html","formatted":"3,458"}]
  var rank_max = top_five[0].pageviews
  
  function get_top_five(){
    var articles ='<div class="most_pop_b"><div class="side_row">';
    articles += '<div style="float:left; font-size:20px; font-weight:bold; color:#000; margin-bottom:15px;">';
    articles += '   MOST POPULAR ARTICLES';
    articles += '</div>';
    articles += '';
    for (asset in top_five){
      articles += '<div style="float:left; margin-bottom:15px; width:100%; cursor:pointer;">';
      articles += '  <a href="'+ top_five[asset].path +'" style="text-decoration:none;" >';
      articles += '    <div style="float:left; width:100%;" >';
      articles += '      <div style="float:left; padding-right:10px;">';
      articles += '        <span class="img_overlay overlay_i84"></span>';
      articles += '        '+ top_five[asset].img;
      articles += '      </div>';
      articles += '      <div style="float:left; width:205px;">'
      articles += '        <div style="float:left; width:100%; color:#000; font-size:12px; margin-bottom:6px; height:32px; overflow:hidden;" >';
      articles += '          '+ top_five[asset].name.substr(0, 70)+((top_five[asset].name.length > 70) ? '...' : '') ;
      articles += '        </div>';
      articles += '        <div style="clear:both; float:left; width:100%; color:#31719F; height:16px; overfolow:hidden;" >';
      articles += '          <div style="float:left; width:'+ ((top_five[asset].pageviews/rank_max)*50) +'%; background-color:#103D5A; text-indent:5px; overflow:hidden; height:15px; margin-right:5px;" ></div>';
      articles += '            '+ top_five[asset].formatted +' views';
      articles += '        </div>';
      articles += '      </div>';
      articles += '    </div>';
      articles += '  </a>';
      articles += '</div>' +"\n";
    }
    articles += '<div style="float:left;width:100%;"></div>';
    articles += '</div></div>';
    return articles
  }

