// Gallery Function
function showGallery(articleId){
	/* container which display the gallery content */
	var to = $('gallerybody');
	/* container which contain the gallery to display */
	var from = $("gallery"+articleId);
	
	to.innerHTML = from.innerHTML;
}

//Stores URL's for a specific gallery
var gallery_images = new Array();
//Stores text for a specific image caption
var gallery_captions = new Array();
//Stores the title of the gallery
var gallery_title = new Array();
//Stores the year of the image
var image_year = new Array();
//Stores the medium for the image
var image_medium = new Array();
//Stores the size of the image
var image_size = new Array();

//Stores the current gallery being browsed
var gallery_id = 0;
//Keeps track of what image we are looking at
var current_image_counter = 0;
//Used for preloading images in gallery_images
var preload = new Array();


//Switch image gallery, reset the current_image_counter to 0
//Then calls load_image() to display first image from the new gallery
function switch_gallery(section_id) {
  gallery_id = section_id;
  switch_gallery_title();
  current_image_counter = 0;
  load_image();
}

//Load images into html 'img' container named 'photo'
//Also loads the corresponding caption for the photo - see function caption()
function load_image() {
  var myFx = new Fx.Style('photo', 'opacity', {duration:250});
  myFx.start(1,0).chain(function() {
    $('photo').src = gallery_images[gallery_id][current_image_counter];
  });
	$('photo').addEvent('load', function() {
	  myFx.start(0,1).chain(function() {
    	caption();
    	show_position();  
	  });
	});
}

//Updates current_image_counter by adding 1 
//If we're at the end of that gallery, it sets current_image_counter to 0 so that we start back at the beginning
//It then calls function load_image()
function next_image() {
	if (current_image_counter == gallery_images[gallery_id].length-1) {
		current_image_counter = 0;
	} else {
	  current_image_counter++;
	}
	load_image();
}

//Updates current_image_counter by subtracting 1 
//If we're at the beginning of that gallery, it sets current_image_counter to the last image slot so that we then load the last image
//It then calls function load_image()
function previous_image() {
	if (current_image_counter == 0) {
		current_image_counter = gallery_images[gallery_id].length-1;
	} else {
	  current_image_counter--;
	}
	load_image();
}

//Displays the caption for the current displayed image in a div named 'captions'
function caption() {
	$('captions').innerHTML = gallery_captions[gallery_id][current_image_counter];
	$('year').innerHTML = "year: "+image_year[gallery_id][current_image_counter];
	$('medium').innerHTML = "medium: "+image_medium[gallery_id][current_image_counter];
	$('size').innerHTML = "size: "+image_size[gallery_id][current_image_counter];
}

//Sets the gallery title to be displayed in the page
function switch_gallery_title() {
    title_element = document.getElementById("slideshow_title");
    title_element.innerHTML = gallery_title[gallery_id];
}

//Displays which image we are on (and out of however many images we have in our slideshow)
function show_position() {
  position_element = document.getElementById("position")
  position_element.innerHTML = current_image_counter+1 + "/" + gallery_images[gallery_id].length;
}


gallery_images[0] = new Array();
gallery_captions[0] = new Array();
image_year[0] = new Array();
image_medium[0] = new Array();
image_size[0] = new Array();

//
//ONLY EDIT THE LINES BELOW
//


gallery_title[0] = "slideshow";

gallery_images[0][0] = './artwork/alleverythingthatisyou/sno/sno3_076.jpg';
gallery_captions[0][0] = 'Sno3_076';
image_year[0][0] = '2006-2007';
image_medium[0][0] = 'Archival inkjet print diasec mounted to plexi glass';
image_size[0][0] = '40\"x40\"';

gallery_images[0][1] = './artwork/alleverythingthatisyou/sno/sno6_034.1.jpg';
gallery_captions[0][1] = 'Sno6_034';
image_year[0][1] = '2006-2007';
image_medium[0][1] = 'Archival inkjet print diasec mounted to plexi glass';
image_size[0][1] = '27 1/2\"x27 1/2\"';

gallery_images[0][2] = './artwork/alleverythingthatisyou/sno/sno6_047.1.jpg';
gallery_captions[0][2] = 'Sno6_047.1';
image_year[0][2] = '2006-2007';
image_medium[0][2] = 'Archival inkjet print diasec mounted to plexi glass';
image_size[0][2] = '40\"x40\"';

gallery_images[0][3] = './artwork/alleverythingthatisyou/sno/sno7_057.jpg';
gallery_captions[0][3] = 'Sno7_057';
image_year[0][3] = '2006-2007';
image_medium[0][3] = 'Archival inkjet print diasec mounted to plexi glass';
image_size[0][3] = '72\"x72\"';

gallery_images[0][4] = './artwork/alleverythingthatisyou/sno/sno7_063.jpg';
gallery_captions[0][4] = 'Sno7_063';
image_year[0][4] = '2006-2007';
image_medium[0][4] = 'Archival inkjet print diasec mounted to plexi glass';
image_size[0][4] = '104\"x104\"';

gallery_images[0][5] = './artwork/alleverythingthatisyou/sno/sno7.1_020.jpg';
gallery_captions[0][5] = 'Sno7_020.1';
image_year[0][5] = '2006-2007';
image_medium[0][5] = 'Archival inkjet print diasec mounted to plexi glass';
image_size[0][5] = '72\"x72\"';

gallery_images[0][6] = './artwork/alleverythingthatisyou/sno/sno8_245.1.jpg';
gallery_captions[0][6] = 'Sno8_245.1';
image_year[0][6] = '2006-2007';
image_medium[0][6] = 'Archival inkjet print diasec mounted to plexi glass';
image_size[0][6] = '27 1/2\"x27 1/2\"';

gallery_images[0][7] = './artwork/alleverythingthatisyou/sno/sno8_245.jpg';
gallery_captions[0][7] = 'Sno8_245';
image_year[0][7] = '2006-2007';
image_medium[0][7] = 'Archival inkjet print diasec mounted to plexi glass';
image_size[0][7] = '40\"x40\"';

gallery_images[0][8] = './artwork/alleverythingthatisyou/sno/sno8_250-b.jpg';
gallery_captions[0][8] = 'Sno8_250';
image_year[0][8] = '2006-2007';
image_medium[0][8] = 'Archival inkjet print diasec mounted to plexi glass';
image_size[0][8] = '27 1/2\"x27 1/2\"';

gallery_images[0][9] = './artwork/alleverythingthatisyou/sno/sno8_255.jpg';
gallery_captions[0][9] = 'Sno8_255';
image_year[0][9] = '2006-2007';
image_medium[0][9] = 'Archival inkjet print diasec mounted to plexi glass';
image_size[0][9] = '40\"x40\"';

gallery_images[0][10] = './artwork/alleverythingthatisyou/sno/veldertim.jpg';
gallery_captions[0][10] = 'alleverythingthatisyou veldertim';
image_year[0][10] = '2006';
image_medium[0][10] = 'Archival inkjet prints diasec mounted to plexi glass';
image_size[0][10] = '14 1/2\"x14 1/2\" each';

gallery_images[0][11] = './artwork/alleverythingthatisyou/sno/muytiob.jpg';
gallery_captions[0][11] = 'alleverythingthatisyou muytiob';
image_year[0][11] = '2006';
image_medium[0][11] = 'Archival inkjet prints diasec mounted to plexi glass';
image_size[0][11] = '14 1/2\"x14 1/2\" each';

gallery_images[0][12] = './artwork/alleverythingthatisyou/sno/moitrevgo.jpg';
gallery_captions[0][12] = 'alleverythingthatisyou moitrevgo';
image_year[0][12] = '2006';
image_medium[0][12] = 'Archival inkjet prints diasec mounted to plexi glass';
image_size[0][12] = '14 1/2\"x14 1/2\" each';

gallery_images[0][13] = './artwork/alleverythingthatisyou/sno/meruix.jpg';
gallery_captions[0][13] = 'alleverythingthatisyou meruix';
image_year[0][13] = '2006-2007';
image_medium[0][13] = 'Archival inkjet prints diasec mounted to plexi glass';
image_size[0][13] = '14 1/2\"x14 1/2\" each';

gallery_images[0][14] = './artwork/alleverythingthatisyou/sno/linmido.jpg';
gallery_captions[0][14] = 'alleverythingthatisyou linmido';
image_year[0][14] = '2006';
image_medium[0][14] = 'Archival inkjet prints diasec mounted to plexi glass';
image_size[0][14] = '14 1/2\"x14 1/2\" each';

gallery_images[0][15] = './artwork/alleverythingthatisyou/sno/alleverythingthatisy_19AD7E.jpg';
gallery_captions[0][15] = 'alleverythingthatisyou merdewbem';
image_year[0][15] = '2006-2007';
image_medium[0][15] = 'Archival inkjet prints diasec mounted to plexi glass';
image_size[0][15] = '14 1/2\"x14 1/2\" each';

gallery_images[0][16] = './artwork/alleverythingthatisyou/sno/gehjiknol.jpg';
gallery_captions[0][16] = 'alleverythingthatisyou gehjiknol';
image_year[0][16] = '2006-07';
image_medium[0][16] = 'Archival inkjet prints diasec mounted to plexi glass';
image_size[0][16] = '14 1/2\"x14 1/2\" each';

gallery_images[0][17] = './artwork/alleverythingthatisyou/sno/hemveret.jpg';
gallery_captions[0][17] = 'alleverythingthatisyou hemveret';
image_year[0][17] = '2006-2007';
image_medium[0][17] = 'Archival inkjet prints diasec mounted to plexi glass';
image_size[0][17] = '14 1/2\"x14 1/2\" each';

gallery_images[0][18] = './artwork/alleverythingthatisyou/sno/bertikvim.jpg';
gallery_captions[0][18] = 'alleverythingthatisyou bertikvim';
image_year[0][18] = '2006';
image_medium[0][18] = 'Archival inkjet prints diasec mounted to plexi glass';
image_size[0][18] = '14 1/2\"x14 1/2\" each';

gallery_images[0][19] = './artwork/alleverythingthatisyou/sno/tiotquat.jpg';
gallery_captions[0][19] = 'alleverythingthatisyou tiotquat';
image_year[0][19] = '2006-2007';
image_medium[0][19] = 'Archival inkjet prints diasec mounted to plexi glass';
image_size[0][19] = '14 1/2\"x14 1/2\" each';

gallery_images[0][20] = './artwork/alleverythingthatisyou/sno/topuret.jpg';
gallery_captions[0][20] = 'alleverythingthatisyou topuret';
image_year[0][20] = '2006-2007';
image_medium[0][20] = 'Archival inkjet prints diasec mounted to plexi glass';
image_size[0][20] = '14 1/2\"x14 1/2\" each';

gallery_images[0][21] = './artwork/alleverythingthatisyou/sno/Sno_specimen.jpg';
gallery_captions[0][21] = 'Specimen';
image_year[0][21] = '2006';
image_medium[0][21] = 'Archival inkjet prints diasec mounted to plexi glass';
image_size[0][21] = '78\"x140\"';

gallery_images[0][22] = './artwork/alleverythingthatisyou/sno/hokminber.jpg';
gallery_captions[0][22] = 'alleverythingthatisyou hokminber';
image_year[0][22] = '2006-2007';
image_medium[0][22] = 'Archival inkjet prints diasec mounted to plexi glass';
image_size[0][22] = '14 1/2\"x14 1/2\" each';

gallery_images[0][23] = './artwork/alleverythingthatisyou/sno/snofall_1_2.jpg';
gallery_captions[0][23] = 'Snowfall #1 and #2';
image_year[0][23] = '2006-2007';
image_medium[0][23] = 'Archival inkjet print diasec mounted to plexi glass';
image_size[0][23] = '70 1/2\"x33\"';

gallery_images[0][24] = './artwork/alleverythingthatisyou/sno/snofall_3_4.jpg';
gallery_captions[0][24] = 'Snowfall #3 and #4';
image_year[0][24] = '2006-2007';
image_medium[0][24] = 'Archival inkjet print diasec mounted to plexi glass';
image_size[0][24] = '75 3/4\"x36\"';