<?php

  /*****************************************************
  ** Title........: Gallery Script
  ** Filename.....: index.php
  ** Author.......: Ralf Stadtaus
  ** Homepage.....: http://www.stadtaus.com/
  ** Contact......: mailto:info@stadtaus.com
  ** Version......: 0.2
  ** Notes........:
  ** Last changed.: 2004-03-05
  ** Last change..:          
  *****************************************************/




  /*****************************************************
  **           Settings - Einstellungen
  *****************************************************/

          $image_path        = "images";
          $image_url         = "images";


          $picture_count     = "1";
          $pictures_per_page = "5";

          $order             = "descending";


          $language          = "de"; // en, de, es, fr, nl, da, sv


          $global_template   = "templates/index.html";
          $cell_template     = "templates/table.html";


          $large_image_page  = "window.php";


          $path['log']       = "./log";

          $logging_file      = "";
          $statistic_file    = "";




  /*****************************************************
  ** Add here further words, text, variables and stuff
  ** that you want to appear in the template.
  *****************************************************/
          $add_text = array(

                              'txt_additional' => 'Additional', //  {txt_additional}
                              'txt_more'       => 'More'        //  {txt_more}

                            );




  /*****************************************************
  ** Do not edit below.
  *****************************************************/
          include ('./inc/gallery.inc.php');


?>