$(window).load(function() {
	$('ul.galleryImages li:first-child').addClass('current');
	$('ul.galleryImages li').each(function(index) { // Attach a unique class to each full size image in the gallery
		$(this).addClass('image' + index);
	});
	
	$('ul.galleryThumbs li:first-child').addClass('current');
	$('ul.galleryThumbs li').each(function(index) { // Attach a unique class to each thumbnail image
		$(this).addClass('thumb' + index).click(function() {
			switch_gallery(index);
			return false;
		});
	});
});

function switch_gallery(index) { // Remove the "current" class from the current image and thumbnail, and add it to the selected image and thumbnail
	$('ul.galleryImages li.current').fadeOut('slow', function() {
		$('ul.galleryImages li.current').removeClass('current');
	});
	$('ul.galleryImages li.image' + index).fadeIn('slow', function() {
		$('ul.galleryImages li.image' + index).addClass('current');
	});
	$('ul.galleryThumbs li.current').removeClass('current');
	$('ul.galleryThumbs li.thumb' + index).addClass('current');
}
