jQuery(document).ready(function() {
	// for js detection
	$('body').addClass('js');
	// hide nojs
	$('.nojs').hide();
	// references slide fader
	$("#start ul#references").show().innerfade({
		speed: 1E3,
		timeout: 5E3,
		type: "sequence",
		containerheight: "174px"
	});
	// imagezoomer
	$("a.imagezoom").fancybox({
		'transitionIn'			: 'elastic',
		'transitionOut'			: 'elastic',
		'easingIn'				: 'easeInQuint',
		'easingOut'				: 'easeOutQuint',
		'speedIn'				: 400,
		'speedOut'				: 200,
		'hideOnOverlayClick'	: true,
		'hideOnContentClick'	: true,
		'overlayShow'			: false 
	});
});
