var PopularPhotoLoader = Class.create({ albums: [{"id":"7723","name":"Rare photos of John F. Kennedy auctioned","url":"\/photo\/album\/7723\/","imgTag":"\"Rare","photoCount":"6"},{"id":"7700","name":"Vostok-2014: Largest drills since Soviet times","url":"\/photo\/album\/7700\/","imgTag":"\"Vostok-2014:","photoCount":"12"},{"id":"7721","name":"Dogs like surfing too","url":"\/photo\/album\/7721\/","imgTag":"\"Dogs","photoCount":"8"},{"id":"7704","name":"Monument to Lenin demolished in Ukraine's Kharkiv","url":"\/photo\/album\/7704\/","imgTag":"\"Monument","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":"7710","name":"Life in today's Donetsk","url":"\/photo\/album\/7710\/","imgTag":"\"Life","photoCount":"8"},{"id":"7706","name":"Donbass: Between war and truce","url":"\/photo\/album\/7706\/","imgTag":"\"Donbass:","photoCount":"9"},{"id":"7701","name":"International coalition bombs Syria","url":"\/photo\/album\/7701\/","imgTag":"\"International","photoCount":"6"},{"id":"7712","name":"Ebola raging in West Africa","url":"\/photo\/album\/7712\/","imgTag":"\"Ebola","photoCount":"8"},{"id":"7705","name":"At least 36 killed in volcano eruption in Japan","url":"\/photo\/album\/7705\/","imgTag":"\"At","photoCount":"7"},{"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":"7708","name":"Japanese volcano kills dozens of hikers","url":"\/photo\/album\/7708\/","imgTag":"\"Japanese","photoCount":"7"},{"id":"7713","name":"Protests in Turkey: 15 killed","url":"\/photo\/album\/7713\/","imgTag":"\"Protests","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":"7711","name":"Underwater artist from Siberia","url":"\/photo\/album\/7711\/","imgTag":"\"Underwater","photoCount":"7"},{"id":"7715","name":"Strong, shallow quake strikes China","url":"\/photo\/album\/7715\/","imgTag":"\"Strong,","photoCount":"5"},{"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":"7525","name":"Helena Christensen: Looking like 20 at 45","url":"\/photo\/album\/7525\/","imgTag":"\"Helena","photoCount":"8"},{"id":"7577","name":"Men of Ethiopian Bodi tribe: Living on honey","url":"\/photo\/album\/7577\/","imgTag":"\"Men","photoCount":"7"},{"id":"7684","name":"Oh, what an actor! Oh, what a suit!","url":"\/photo\/album\/7684\/","imgTag":"\"Oh,","photoCount":"10"},{"id":"7699","name":"Man catches giant anaconda","url":"\/photo\/album\/7699\/","imgTag":"\"Man","photoCount":"7"}], 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); } });