(function($) {
	$(document).ready(function() {
		$('.gallery-panes a').fancybox({
			'changeFade': 400,
			'padding': 0,
			'titlePosition': 'over'
		});

		$('#GalleryNav').scrollable();
		$('#GalleryNav a').hover(function() {
			$(this).fadeTo(300, 1);
		}, function() {
			$(this).fadeTo(300, 0.4);
		});
		$('#GalleryNav a').click(function() {
			var image = $(this).attr('href');
			swapImage(image);

			return false;
		});

		function swapImage(image) {
			var current = $('.gallery-panes div:visible');

			if ($(image).css('display') == 'none') {
				$(current).fadeOut(550);
				$(image).fadeIn(550);
			}
		}
	});
})(jQuery);