var PopularPhotoLoader = Class.create({ albums: [{"id":"7721","name":"Dogs like surfing too","url":"\/photo\/album\/7721\/","imgTag":"\"Dogs","photoCount":"8"},{"id":"7700","name":"Vostok-2014: Largest drills since Soviet times","url":"\/photo\/album\/7700\/","imgTag":"\"Vostok-2014:","photoCount":"12"},{"id":"7698","name":"Dassault Rafale: French air supremacy","url":"\/photo\/album\/7698\/","imgTag":"\"Dassault","photoCount":"8"},{"id":"7712","name":"Ebola raging in West Africa","url":"\/photo\/album\/7712\/","imgTag":"\"Ebola","photoCount":"8"},{"id":"7699","name":"Man catches giant anaconda","url":"\/photo\/album\/7699\/","imgTag":"\"Man","photoCount":"7"},{"id":"7702","name":"F-22 Raptor: Air superiority fighter","url":"\/photo\/album\/7702\/","imgTag":"\"F-22","photoCount":"8"},{"id":"7720","name":"Typhoon Vongfong lashes Japan","url":"\/photo\/album\/7720\/","imgTag":"\"Typhoon","photoCount":"6"},{"id":"7705","name":"At least 36 killed in volcano eruption in Japan","url":"\/photo\/album\/7705\/","imgTag":"\"At","photoCount":"7"},{"id":"7709","name":"Mass graves in Donetsk: 400 bodies found","url":"\/photo\/album\/7709\/","imgTag":"\"Mass","photoCount":"6"},{"id":"7718","name":"OSCE: Nearly 1,500 killed in Donetsk since 2014","url":"\/photo\/album\/7718\/","imgTag":"\"OSCE:","photoCount":"8"},{"id":"7714","name":"Train loaded with toxic chemicals derails in Canada","url":"\/photo\/album\/7714\/","imgTag":"\"Train","photoCount":"5"},{"id":"7707","name":"Man builds house of million shells in China","url":"\/photo\/album\/7707\/","imgTag":"\"Man","photoCount":"7"},{"id":"7706","name":"Donbass: Between war and truce","url":"\/photo\/album\/7706\/","imgTag":"\"Donbass:","photoCount":"9"},{"id":"7710","name":"Life in today's Donetsk","url":"\/photo\/album\/7710\/","imgTag":"\"Life","photoCount":"8"},{"id":"7701","name":"International coalition bombs Syria","url":"\/photo\/album\/7701\/","imgTag":"\"International","photoCount":"6"},{"id":"7713","name":"Protests in Turkey: 15 killed","url":"\/photo\/album\/7713\/","imgTag":"\"Protests","photoCount":"7"},{"id":"7704","name":"Monument to Lenin demolished in Ukraine's Kharkiv","url":"\/photo\/album\/7704\/","imgTag":"\"Monument","photoCount":"7"},{"id":"7708","name":"Japanese volcano kills dozens of hikers","url":"\/photo\/album\/7708\/","imgTag":"\"Japanese","photoCount":"7"},{"id":"7715","name":"Strong, shallow quake strikes China","url":"\/photo\/album\/7715\/","imgTag":"\"Strong,","photoCount":"5"},{"id":"7711","name":"Underwater artist from Siberia","url":"\/photo\/album\/7711\/","imgTag":"\"Underwater","photoCount":"7"},{"id":"7689","name":"Irina Shayk, Stephen James and shoes","url":"\/photo\/album\/7689\/","imgTag":"\"Irina","photoCount":"9"},{"id":"7467","name":"Supershow Victoria's Secret-2013","url":"\/photo\/album\/7467\/","imgTag":"\"Supershow","photoCount":"12"},{"id":"7439","name":"Niagara Falls to die in 50K years","url":"\/photo\/album\/7439\/","imgTag":"\"Niagara","photoCount":"9"},{"id":"7446","name":"Hot air balloons decorate Chinese skies","url":"\/photo\/album\/7446\/","imgTag":"\"Hot","photoCount":"8"},{"id":"7460","name":"3,900 lighters in one pub","url":"\/photo\/album\/7460\/","imgTag":"\"3,900","photoCount":"6"},{"id":"7473","name":"Little dinosaurs by Deivis Slavinskas","url":"\/photo\/album\/7473\/","imgTag":"\"Little","photoCount":"8"},{"id":"7483","name":"Thanksgiving parade in NYC","url":"\/photo\/album\/7483\/","imgTag":"\"Thanksgiving","photoCount":"9"},{"id":"7492","name":"Diving with garbage cans of the sea","url":"\/photo\/album\/7492\/","imgTag":"\"Diving","photoCount":"8"},{"id":"7498","name":"World Innovation Summit for Health in Qatar faces new challenges","url":"\/photo\/album\/7498\/","imgTag":"\"World","photoCount":"10"},{"id":"7516","name":"Christmas Day swim in Wales","url":"\/photo\/album\/7516\/","imgTag":"\"Christmas","photoCount":"8"},{"id":"7521","name":"Road to eternity on Mount Hood","url":"\/photo\/album\/7521\/","imgTag":"\"Road","photoCount":"8"},{"id":"7523","name":"Surreal city landscapes","url":"\/photo\/album\/7523\/","imgTag":"\"Surreal","photoCount":"10"},{"id":"7525","name":"Helena Christensen: Looking like 20 at 45","url":"\/photo\/album\/7525\/","imgTag":"\"Helena","photoCount":"8"},{"id":"7533","name":"Kate Moss: The model that broke glamour is 40","url":"\/photo\/album\/7533\/","imgTag":"\"Kate","photoCount":"8"},{"id":"7546","name":"US man says he shot Yeti","url":"\/photo\/album\/7546\/","imgTag":"\"US","photoCount":"5"},{"id":"7550","name":"Americans know nothing about WWII","url":"\/photo\/album\/7550\/","imgTag":"\"Americans","photoCount":"9"},{"id":"7552","name":"London in late 19th century and today","url":"\/photo\/album\/7552\/","imgTag":"\"London","photoCount":"6"},{"id":"7576","name":"Inside Men's Central Jail in Los Angeles","url":"\/photo\/album\/7576\/","imgTag":"\"Inside","photoCount":"8"},{"id":"7613","name":"Pictures of animal life","url":"\/photo\/album\/7613\/","imgTag":"\"Pictures","photoCount":"10"},{"id":"7614","name":"Ice cream for dogs, anyone?","url":"\/photo\/album\/7614\/","imgTag":"\"Ice","photoCount":"6"}], count: 5, horizontal: true, nodeId: 'gallery-id', newWindow: false, target: '_self', url: null, initialize: function(count, horizontal, nodeId, newWindow, url) { this.count = count; this.horizontal = horizontal; if (nodeId) this.nodeId = nodeId; if (newWindow) this.newWindow = newWindow; this.target = newWindow ? '_blank' : '_self'; if (url) this.url = url; this.render(); }, render: function() { var table = new Element('table', {'class' : 'frame', 'style' : 'width:100%;font-size:12px;'}); if (this.horizontal) var row = table.insertRow(-1); var limit = this.albums.length > this.count ? this.count : this.albums.length; this.albums.shuffle(); for (var i=0; i < limit; i++) { if (!this.horizontal) var row = table.insertRow(-1); var cell = row.insertCell(-1); cell.setAttribute('valign', 'top'); if (limit == 2) cell.setAttribute('style', 'width:50%'); if (this.albums[i].imgTag) { var a = new Element('a', {'href' : ((this.url ? this.url : '')+this.albums[i].url), 'target' : this.target}); a.innerHTML = this.albums[i].imgTag; cell.appendChild(a); } var a = new Element('a', {'href' : ((this.url ? this.url : '')+this.albums[i].url), 'target' : this.target}); a.appendChild(document.createTextNode(this.albums[i].name)); cell.appendChild(a); cell.appendChild(new Element('br')); var a = new Element('a', {'href' : ((this.url ? this.url : '')+this.albums[i].url), 'class' : 'hot', 'target' : this.target}); a.appendChild(document.createTextNode('('+this.albums[i].photoCount+' photos)')); cell.appendChild(a); } $(this.nodeId).innerHTML = ''; $(this.nodeId).appendChild(table); } });