﻿//var backToMenuHtml = '<a href="javascript:mainGalleryMenu();" class="backToGalleryButton">Back To Galleries Menu</a>';
var nextimage = '';
var photoInfoContent = '';
var currentGallery = 0;
var galleryCount = 0;
var maxGalleryIndex = 0;

function ShowPhoto() {

    $('#pictureDisplay').hide();

    nextimage = $(this).attr("href");
    
    $('#pictureDisplay').html('<img src="' + nextimage + '" alt="' + photoInfoContent + '" class="absPic" />'); // + backToMenuHtml);

    $('#pictureDisplay').show();

    return false;

}

function moveGallery() 
{

    if (currentGallery >= maxGalleryIndex)
    {
        currentGallery = 0;
    }
    else{
        currentGallery++;
    }

    $('div.GalleryContainer').hide();
    $('div.GalleryContainer').eq(currentGallery).show();
return false;

}

function InitGallery() {

    $('div.GalleryContainer h2 span.galleryPicker').live('click',moveGallery);
    $('div.thumbs a').live('click',ShowPhoto);

    galleryCount = $('div.GalleryContainer').length;
    maxGalleryIndex = (galleryCount - 1);
    $('div.GalleryContainer').eq(currentGallery).show();

}

$(document).ready(function() {
InitGallery();
      });


    