var PopularPhotoLoader = Class.create({ albums: [{"id":"7810","name":"Rafale flying to Egypt?","url":"\/photo\/album\/7810\/","imgTag":"\"Rafale","photoCount":"7"},{"id":"7811","name":"Militia forces show strong resistance to Kiev troops","url":"\/photo\/album\/7811\/","imgTag":"\"Militia","photoCount":"6"},{"id":"7794","name":"Aircraft boneyard in Arizona","url":"\/photo\/album\/7794\/","imgTag":"\"Aircraft","photoCount":"6"},{"id":"7793","name":"Pictures of life from around the world","url":"\/photo\/album\/7793\/","imgTag":"\"Pictures","photoCount":"8"},{"id":"7803","name":"At least 19 killed as plane hits bridge in Taiwan","url":"\/photo\/album\/7803\/","imgTag":"\"At","photoCount":"7"},{"id":"7807","name":"Putin receives royal welcome in Egypt","url":"\/photo\/album\/7807\/","imgTag":"\"Putin","photoCount":"5"},{"id":"7809","name":"Donetsk under shelling again","url":"\/photo\/album\/7809\/","imgTag":"\"Donetsk","photoCount":"8"},{"id":"7798","name":"War in Ukraine's Mariupol","url":"\/photo\/album\/7798\/","imgTag":"\"War","photoCount":"8"},{"id":"7800","name":"Israel ready to fight Hezbollah","url":"\/photo\/album\/7800\/","imgTag":"\"Israel","photoCount":"9"},{"id":"7792","name":"F-16 crash in Spain: What happened?","url":"\/photo\/album\/7792\/","imgTag":"\"F-16","photoCount":"6"},{"id":"7801","name":"Polar bears roaming in London","url":"\/photo\/album\/7801\/","imgTag":"\"Polar","photoCount":"6"},{"id":"7790","name":"Would you put your baby in this bed?","url":"\/photo\/album\/7790\/","imgTag":"\"Would","photoCount":"5"},{"id":"7802","name":"Protests around the world","url":"\/photo\/album\/7802\/","imgTag":"\"Protests","photoCount":"8"},{"id":"7804","name":"Train slams into SUV in New York, 7 killed","url":"\/photo\/album\/7804\/","imgTag":"\"Train","photoCount":"5"},{"id":"7788","name":"Wealthy woman makes lap dog her daughter","url":"\/photo\/album\/7788\/","imgTag":"\"Wealthy","photoCount":"7"},{"id":"7808","name":"A day of life from around the world","url":"\/photo\/album\/7808\/","imgTag":"\"A","photoCount":"7"},{"id":"7805","name":"Pyro musical competition in the Philippines","url":"\/photo\/album\/7805\/","imgTag":"\"Pyro","photoCount":"8"},{"id":"7795","name":"Gas explodes near maternity hospital in Mexico","url":"\/photo\/album\/7795\/","imgTag":"\"Gas","photoCount":"7"},{"id":"7689","name":"Irina Shayk, Stephen James and shoes","url":"\/photo\/album\/7689\/","imgTag":"\"Irina","photoCount":"9"}], 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); } });