﻿// JavaScript Document ------------------------------------------
// (c) 2006 Martin Kovarik, nihi@atlas.cz, http://www.nihique.com
// --------------------------------------------------------------

// Configurable Variables for Photogallery:

var imgsPerPg = 18;      // number of img elements in the html
var imgsMax = 18;        // total number of images
var slideTimeout = 10;   // seconds before loading the next slide

var gPath = ROOT_PATH + 'Images/Photogallery/Synergy-a-Dive-v-Divadle-pod-Lampou-2006/Thumbnails/';  // gallery files (thumbnails) path, include trailing slash
var gPrefix = '06-05-06_lampa_';
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-a-Dive-v-Divadle-pod-Lampou-2006/'; // slideshow files (big imgs) path, include trailing slash
var sPrefix = '06-05-06_lampa_';
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] =  "n/a";
captions[1] =  "Vyvoněná zkušebna před odjezdem.";
captions[2] =  "Sépijovej vážňák NiHi.";
captions[3] =  "Věci se daly do pohybu.";
captions[4] =  "Pája v osvícení.";
captions[5] =  "Sin City cover.";
captions[6] =  "Milášek.";
captions[7] =  "Dej si na mně bacha, voe!";
captions[8] =  "Krasavec za bubny...";
captions[9] =  "...ale asi mu ulítly včely.";
captions[10] = "<a href=\"http://k-lxm.wz.cz/\">K-lxm</a> bedlivě dohlíží zdali je vše O.K.";
captions[11] = "P(r)ožitek (z) HELLAra.";
captions[12] = "Kdo nepaří s náma, paří třeba s nima.";
captions[13] = "<a href=\"http://www.diveband.net/\">Dive</a> si to fakt pěkně nakládaj.";
captions[14] = "7 strun, 11 prstů, pavoučí muž Nosál.";
captions[15] = "D2 [da:da]: \"Jejku, upadl mi prstýnek...\"";
captions[16] = "Dav v extázi, aneb \"najdeš se člověče?\"";
captions[17] = "Synerdžáci v plném počtu.";
captions[18] = "\"Hele voe, buben!\"";

// End User Configurable Variables
