// ---------- Gallerific
$(document).ready(function() {
	if ($('#gallery').length > 0) {
		var gallery = $('#gallery').galleriffic('#navigation', {
			delay:                5500,
			numThumbs:            12,
			preloadAhead:         40, // Set to -1 to preload all images
			imageContainerSel:    '#slideshow',
			fixedNavigation:	   true,
			galleryKeyboardNav:	   true,
			autoPlay:		   false
		});

	
	gallery.onFadeOut = function() {
		$('#details').fadeOut('fast');
	};
	
	gallery.onFadeIn = function() {
		$('#details').fadeIn('fast');
	};
	
	$('ul#accordion a.heading').click(function() {
		autoHeight: false
		$(this).css('outline','none');
		if($(this).parent().hasClass('current')) {
			$(this).siblings('ul').slideUp('slow',function() {
				$(this).parent().removeClass('current');
				$.scrollTo('#accordion',1000);
			});
		} else {
			$('ul#accordion li.current ul').slideUp('slow',function() {
				$(this).parent().removeClass('current');
			});
			$(this).siblings('ul').slideToggle('slow',function() {
				$(this).parent().toggleClass('current');
			});
			$.scrollTo('#accordion',1000);
		}
		return false;
	});		
  }
});
