﻿// JavaScript Document ------------------------------------------
// (c) 2006 Martin Kovarik, nihi@atlas.cz, http://www.nihique.com
// --------------------------------------------------------------

// Configurable Variables for Photogallery:

var imgsPerPg = 27;     // number of img elements in the html
var imgsMax = 27;       // total number of images
var slideTimeout = 10;  // seconds before loading the next slide

var gPath = ROOT_PATH + 'Images/Photogallery/Synergy-na-festivalu-Defest-2006/Thumbnails/';  // gallery files (thumbnails) path, include trailing slash
var gPrefix = '06-07-08_defest06_';
var gSuffix = '_tn';
var gExt = '.gif';
var gZeros = true;      // filename uses leading zeros?
var gDigits = 3;        // total digits in filename, including leading zeros

var sPath = ROOT_PATH + 'Images/Photogallery/Synergy-na-festivalu-Defest-2006/'; // slideshow files (big imgs) path, include trailing slash
var sPrefix = '06-07-08_defest06_';
var sSuffix = '';
var sExt = '.jpg';
var sZeros = true;      // filename uses leading zeros?                     
var sDigits = 3;        // total digits in filename, including leading zeros

// There must be (imgsMax + 1) captions. captions[0] is currently not used.
var captions = new Array();
captions[0] =  "prázdné";
captions[1] =  "Předkoncertní nejen zvukovej tuning.";
captions[2] =  "Plyšoví fanoušci jsou věrní.";
captions[3] =  "Hudba počala.";
captions[4] =  "Paja";
captions[5] =  "NiHiq";
captions[6] =  "Publikum";
captions[7] =  "Mr. Žíla";
captions[8] =  "Akce";
captions[9] =  "Paja";
captions[10] = "Nihiq";
captions[11] = "Paja";
captions[12] = "Pravá totožnost, vše prozrazeno.";
captions[13] = "Ulítla palička, rytmus nebo včely?";
captions[14] = "Jedna z nich je na Deftones, uhádneš?";
captions[15] = "Nihiq (opuštěn) balí vercajk.";
captions[16] = "Hravý <a href=\"http://k-lxm.wz.cz/\">Klimoň</a>";
captions[17] = "Mufi, ta jež dala fotkám vzniknout";
captions[18] = "Pozor, zlý Filipes!";
captions[19] = "Štěpi a jeho big one klobása :O";
captions[20] = "Kombucha fucka!";
captions[21] = "Huj3r";
captions[22] = "Na Defestu zahráli i naši afričtí přátelé.";
captions[23] = "H.A.T.E.mo.";
captions[24] = "Pepek byl ten večer všude...!";
captions[25] = "Dáda s větrákem.";
captions[26] = "A tentokráte bez, zato velmi vtipně:)";
captions[27] = "Dive in action.";

// End User Configurable Variables
