//------------------------------------------------------------------//
// libErgie 1.0                                                     //
// Javascript Photo Gallery                                         //
// http://sourceforge.net/projects/libergie                         //
// Configuration file                                               //
//------------------------------------------------------------------//
var ImgW  = new Array();             // Image weight
var ImgH  = new Array();             // Image height
var image = new Array();             // Image name
var Description = new Array();       // Image description

// Set di CSS file that you want to use
// var CssFile='style.css';

// Language file: it en na
var Lang="de";
// Path for preview and full sized image
var ThumbsPath = "./thumbals";
var ImagesPath = "./images";

// Title for the web pages
var Title1 = ""; // Title in H1
var Title2 = "";     // Subtitle in H2
var Title3 = "";                     // Subtitle in H2

// Number of rows e culomns in a single page
var NRows = 2;
var NCols = 2;

// Show images in popup
var ShowPopup = false;
// Show description under preview
var ShowDescription = false;
// Show link to main page
var ShowGoBack = false;
// Total number of images in the gallery
var NImages = 4;

// For each image you must set 
// image[i] -> filename (thumbals and full sized image). 
//  ImgW[i] -> width of the full sized image in pixel
//  ImgH[i] -> height of the full sized image in pixel
//  Description[i] -> text that you want show 
//  with index i between 0 and NImages-1
   image[0] = "screenshot1.png";       ImgW[0] = 320; ImgH[0] = 200; Description[0] = "Auf dem Friedhof";
   image[1] = "screenshot2.png";      ImgW[1] = 320; ImgH[1] = 200; Description[1] = "Nach 60 Jahren wieder zuhause";
   image[2] = "screenshot3.png";       ImgW[2] = 320; ImgH[2] = 200; Description[2] = "Ein Zug am Ende seiner Reise";
   image[3] = "screenshot4.png";      ImgW[3] = 320; ImgH[3] = 200; Description[3] = "Verzweifelte Menschen";

// End of configuration file