$(document).ready(function(){
	
	
	$('.navi-container').accordion({ 
		header: '.button-a',
		active: '.active',
		autoHeight: false,
		collapsible: false,
		event : 'mouseover'
	});
	
	$('a[rel=group]').fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayOpacity' : 0.8,
		'overlayColor' : '#000000',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
	});


});
