/**
* Javascript file which defines the images to display.
*
* Author: Andrew Powell, Copyright &copy; 2008
* Version: 1.0
* Date: 01/08/2008
**/

var smallLocation = "./gallery/small/";
var mediumLocation = "./gallery/medium/";

var galleryImages = new Array();
/*
* Each image will have a galleryImage object that will hold the src image name
* and the title to go along with the image. Note that the first image defined will 
* be the first image displayed on the gallery page
*/

var img = new Object();
img.src = "Shifters.jpg";
img.title = "Shrewsbury Shifters 3rd place TAG";
galleryImages.push(img);

var img = new Object();
img.src = "RatPack.jpg";
img.title = "Shrewsbury Rat Pack 6th place at TAG";
galleryImages.push(img);

var img = new Object();
img.src = "KerryFrodo.jpg";
img.title = "Kerry & Frodo 1st place grade 1 agility";
galleryImages.push(img);

var img = new Object();
img.src = "MarianKatie.jpg";
img.title = "Marian & Katie Med 1st place Grade 4 Agility";
galleryImages.push(img);

var img = new Object();
img.src = "team1.jpg";
img.title = "Jenny, Biddy, Lesley, Jo and Dogs Chester, Gypsy, Mollie and Tess";
galleryImages.push(img);

var img = new Object();
img.src = "murphy_charlie.jpg";
img.title = "Murphy & Charlie";
galleryImages.push(img);

var img = new Object();
img.src = "dog4.jpg";
img.title = "Toby";
galleryImages.push(img);

var img = new Object();
img.src = "dog1.jpg";
img.title = "";
galleryImages.push(img);

var img = new Object();
img.src = "katie1.jpg";
img.title = "Katie Jumping";
galleryImages.push(img);

var img = new Object();
img.src = "dog2.jpg";
img.title = "";
galleryImages.push(img);

var img = new Object();
img.src = "dog3.jpg";
img.title = "";
galleryImages.push(img);