// JavaScript Document

$(document).ready(function(){

	$('.thumbnails a').click(function(e){

		e.preventDefault();

		// update thumbnails
		$('thumbnails a').removeClass('selected');
		$('thumbnails a').children().css('opacity','1');
		$(this).addClass('selected');
		$(this).children().css('opacity','1');
	
		// set up vars from thumbnail	
		var photo_caption = $(this).attr('caption');
		var photo_large = $(this).attr('href');
		
		$('.gallery_caption').fadeOut(500);
		$('.gallery_large').fadeOut(500, function(){
			
			$('.gallery_preload_area').html('<img src="'+photo_large+'"/>');
			$('.gallery_preload_area img').imgpreload(function(){
			
				$('.gallery_large').html('<img src="'+photo_large+'">');
				$('.gallery_caption').html('<p align="center">'+photo_caption+'</p>');
				$('.gallery_large').fadeIn(500);
				$('.gallery_caption').fadeIn(500);
			});
		});
	});

});



