var photo = { index1_count: 7, index1_current: 1, index2_count: 40, index2_current: 1 }; // velke fotky hore vlavo na indexe photo.index1 = function(number) { if (number > this.index1_count) this.index1_current = 1; else if (number < 1) this.index1_current = this.index1_count; document.getElementById('img_index1').src = 'images/gall/'+this.index1_current+'.jpg'; return false; } // male fotky dole na indexe photo.index2_photos = new Array(); photo.index2 = function(number) { if (number > this.index2_count) this.index2_current = 1; else if (number < 1) this.index2_current = this.index2_count; document.getElementById('img_index2').innerHTML = ''; this.temp = this.index2_current; for (var i = 1; i <= 8; i++) { document.getElementById('img_index2').innerHTML += this.index2_photos[this.temp - 1]; this.temp++; if (this.temp > this.index2_count) this.temp = 1; } $(".yoxview").yoxview(); return false; }