var PopularPhotoLoader = Class.create({ albums: [{"id":"7776","name":"Fattest nations in the world named","url":"\/photo\/album\/7776\/","imgTag":"\"Fattest","photoCount":"7"},{"id":"7786","name":"Russians dive into holy water on Epiphany","url":"\/photo\/album\/7786\/","imgTag":"\"Russians","photoCount":"7"},{"id":"7778","name":"Most terrible air crashes in 2014","url":"\/photo\/album\/7778\/","imgTag":"\"Most","photoCount":"9"},{"id":"7788","name":"Wealthy woman makes lap dog her daughter","url":"\/photo\/album\/7788\/","imgTag":"\"Wealthy","photoCount":"7"},{"id":"7781","name":"Orthodox Christians celebrate Christmas","url":"\/photo\/album\/7781\/","imgTag":"\"Orthodox","photoCount":"6"},{"id":"7785","name":"Every day claims dozens of innocent lives","url":"\/photo\/album\/7785\/","imgTag":"\"Every","photoCount":"8"},{"id":"7777","name":"UN sums up results of war in Ukraine","url":"\/photo\/album\/7777\/","imgTag":"\"UN","photoCount":"9"},{"id":"7775","name":"What happened to AirAsia plane?","url":"\/photo\/album\/7775\/","imgTag":"\"What","photoCount":"8"},{"id":"7780","name":"Wreckage of AirAsia plane found","url":"\/photo\/album\/7780\/","imgTag":"\"Wreckage","photoCount":"7"},{"id":"7782","name":"AirAsia tail and flight recorder recovered","url":"\/photo\/album\/7782\/","imgTag":"\"AirAsia","photoCount":"6"},{"id":"7779","name":"Terrorists attack Paris","url":"\/photo\/album\/7779\/","imgTag":"\"Terrorists","photoCount":"6"},{"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); } });