$(document).ready(function(){


	/* navigation */

	$('#nav').find('li').hover(function(){

		$(this).find('.sub-menu:first').show();

	}, function(){

		$(this).find('.sub-menu:first').hide();

	});
	

	/* slideshow cycling */	
	
	/* fancybox */
	
	$('.fancybox, .fancybox_video').fancybox({
	
		cyclic 				: true
		
	});
	
	
	/* first visit */
	
	if($('#first_visit').size() > 0){
	
		$('body').css('overflow','hidden');
	
	}
	
	$('#first_visit_wrapper').show().css({
	
		height	: $(document).height() + 'px'
		
	});
	
	$('#first_visit').css({
	
		top 	: Math.ceil(($(window).height() - $('#first_visit').outerHeight()) / 2) + 'px',
		left	: Math.ceil(($(window).width()  - $('#first_visit').outerWidth())  / 2) + 'px'
		
	});
	
	$('#first_visit_close').click(function(){
	
		$('#first_visit_wrapper').animate({
		
			opacity: 0
		
		}, 1500, function() {
		
			$('#first_visit_wrapper').hide();
			$('body').css('overflow','auto');
		
		});
	
	});

});
	
$(window).error(function(){
		
		
	/* make the browser ignore any errors */
	
	return true;
	
});

