/**
 * @author rbentz
 */
$(document).ready( function() {
	$('#galleryDown').click(function() {
		$('.scrollPaneWrapper').scrollTo('+=600px',800);
	});
	
	$('#galleryUp').click(function() {
		$('.scrollPaneWrapper').scrollTo('-=600px',800);
	});
	
	$('.photoGalleryThumb img').click(function() {
		var thumbURL = $(this).attr('src');
		var fullURL = thumbURL.toString().replace('thumbs','full');
		var newImageHTML = '<img src="'+fullURL+'" alt="" />';
		$('.galleryLargeImageContainer img').fadeOut(function () {
			$('.galleryLargeImageContainer').empty();
			$('.galleryLargeImageContainer img').css('display','none');
			$('.galleryLargeImageContainer').append(newImageHTML);
			$('.galleryLargeImageContainer img').fadeIn();
		});
	});
});