var PopularPhotoLoader = Class.create({ albums: [{"id":"7819","name":"Accidents of the week","url":"\/photo\/album\/7819\/","imgTag":"\"Accidents","photoCount":"8"},{"id":"7827","name":"Poroshenko's rusty arms show in Kiev","url":"\/photo\/album\/7827\/","imgTag":"\"Poroshenko","photoCount":"7"},{"id":"7828","name":"Accidents of the week","url":"\/photo\/album\/7828\/","imgTag":"\"Accidents","photoCount":"7"},{"id":"7823","name":"Donetsk airport: Mass grave","url":"\/photo\/album\/7823\/","imgTag":"\"Donetsk","photoCount":"7"},{"id":"7822","name":"Trains collide and helicopters fall","url":"\/photo\/album\/7822\/","imgTag":"\"Trains","photoCount":"8"},{"id":"7825","name":"Boris Nemtsov killed in Moscow","url":"\/photo\/album\/7825\/","imgTag":"\"Boris","photoCount":"7"},{"id":"7817","name":"Interesting photos from around the world","url":"\/photo\/album\/7817\/","imgTag":"\"Interesting","photoCount":"8"},{"id":"7816","name":"Global carnival madness","url":"\/photo\/album\/7816\/","imgTag":"\"Global","photoCount":"9"},{"id":"7813","name":"Moments of unusual life from around the world","url":"\/photo\/album\/7813\/","imgTag":"\"Moments","photoCount":"10"},{"id":"7818","name":"Interesting photos from around the world","url":"\/photo\/album\/7818\/","imgTag":"\"Interesting","photoCount":"9"},{"id":"7824","name":"War in Ukraine through the eyes of children","url":"\/photo\/album\/7824\/","imgTag":"\"War","photoCount":"8"},{"id":"7812","name":"Carnival craze conquers Rio","url":"\/photo\/album\/7812\/","imgTag":"\"Carnival","photoCount":"11"},{"id":"7820","name":"One year of Maidan","url":"\/photo\/album\/7820\/","imgTag":"\"One","photoCount":"8"},{"id":"7815","name":"One day of universal love","url":"\/photo\/album\/7815\/","imgTag":"\"One","photoCount":"8"},{"id":"7689","name":"Irina Shayk, Stephen James and shoes","url":"\/photo\/album\/7689\/","imgTag":"\"Irina","photoCount":"9"},{"id":"7577","name":"Men of Ethiopian Bodi tribe: Living on honey","url":"\/photo\/album\/7577\/","imgTag":"\"Men","photoCount":"7"},{"id":"7600","name":"Russia celebrates Victory Day","url":"\/photo\/album\/7600\/","imgTag":"\"Russia","photoCount":"7"},{"id":"7608","name":"Russia marks Black Sea Fleet Day","url":"\/photo\/album\/7608\/","imgTag":"\"Russia","photoCount":"13"},{"id":"7613","name":"Pictures of animal life","url":"\/photo\/album\/7613\/","imgTag":"\"Pictures","photoCount":"10"},{"id":"7641","name":"In 2016, tourists will fly to space on balloons","url":"\/photo\/album\/7641\/","imgTag":"\"In","photoCount":"6"},{"id":"7695","name":"Soldiers of Chinese army in action","url":"\/photo\/album\/7695\/","imgTag":"\"Soldiers","photoCount":"11"},{"id":"7702","name":"F-22 Raptor: Air superiority fighter","url":"\/photo\/album\/7702\/","imgTag":"\"F-22","photoCount":"8"},{"id":"7742","name":"Traces of UFOs in the sky and on the ground","url":"\/photo\/album\/7742\/","imgTag":"\"Traces","photoCount":"8"},{"id":"7811","name":"Militia forces show strong resistance to Kiev troops","url":"\/photo\/album\/7811\/","imgTag":"\"Militia","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); } });