var PopularPhotoLoader = Class.create({ albums: [{"id":"8292","name":"Terrorists attack London again","url":"http:\/\/www.pravdareport.com\/photo\/album\/8292\/","imgTag":"\"Terrorists","photoCount":"6"},{"id":"8286","name":"Explosion in Manchester","url":"http:\/\/www.pravdareport.com\/photo\/album\/8286\/","imgTag":"\"Explosion","photoCount":"6"},{"id":"8295","name":"Aftermath of Turin football stampede","url":"http:\/\/www.pravdareport.com\/photo\/album\/8295\/","imgTag":"\"Aftermath","photoCount":"7"},{"id":"8288","name":"Rocks: Masterpiece of nature","url":"http:\/\/www.pravdareport.com\/photo\/album\/8288\/","imgTag":"\"Rocks:","photoCount":"8"},{"id":"8289","name":"Taiwan holds war games","url":"http:\/\/www.pravdareport.com\/photo\/album\/8289\/","imgTag":"\"Taiwan","photoCount":"9"},{"id":"8287","name":"Saint Nicholas' relics come to Moscow","url":"http:\/\/www.pravdareport.com\/photo\/album\/8287\/","imgTag":"\"Saint","photoCount":"7"},{"id":"8290","name":"Woman in yellow dancing with sharks","url":"http:\/\/www.pravdareport.com\/photo\/album\/8290\/","imgTag":"\"Woman","photoCount":"6"},{"id":"8294","name":"New potentially dangerous asteroids discovered","url":"http:\/\/www.pravdareport.com\/photo\/album\/8294\/","imgTag":"\"New","photoCount":"8"},{"id":"8291","name":"Armata makes the West nervous","url":"http:\/\/www.pravdareport.com\/photo\/album\/8291\/","imgTag":"\"Armata","photoCount":"9"},{"id":"8285","name":"HMS Daring: Killer of Russian submarines?","url":"http:\/\/www.pravdareport.com\/photo\/album\/8285\/","imgTag":"\"HMS","photoCount":"8"}], 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); } });