$(document).ready(function() {
	// init accordion menu
	$("#navigation").accordion({
		header: '.head',
		navigation: true,
		event: 'click',
		icons: false,
		animated: 'easeslide',
		autoHeight: false
	});

	// FANCYBOX INIT
	$("a.zoom").fancybox();

	$("a.zoom1").fancybox({
		'overlayOpacity' : 0.7,
		'overlayColor' : '#FFF'
	});

	$("a.zoom2").fancybox({
		'zoomSpeedIn' : 500,
		'zoomSpeedOut' : 500
	});

	$("a.group").fancybox({
		'zoomSpeedIn':		300,
		'zoomSpeedOut':	300,
		'overlayShow':		false
	});

	// SLIDESHOW INIT
	$('#slideshow-1').slideshow({
		timeout: 5000,
		type: 'sequence'
	});

	$('#slideshow-2').slideshow({
		timeout: 5000,
		type: 'sequence'
	});

	$('img.caption').captify({
		speedOver: 'fast',
		speedOut: 'normal',
		hideDelay: 500,
		animation: 'slide',
		prefix: '',
		opacity: '0.7',
		className: 'caption-bottom',
		position: 'bottom',
		spanWidth: '100%'
	});
});

