$(document).ready(function () { 
	$('#cyclefp').cycle();
	$("#forsidevideo").hide();
	$(".visgalleri").hide();
	$(".visvideo").click(function() {
		$("#cyclefp").fadeOut("slow");
		$(".visvideo").fadeOut("slow");
		$("#forsidevideo").delay(500).slideDown("slow");
		$(".visgalleri").delay(500).fadeIn("slow");
	});
	$(".visgalleri").click(function() {
		$("#forsidevideo").fadeOut("slow");
		$(".visgalleri").fadeOut("slow");
		$("#cyclefp").delay(500).slideDown("slow");
		$(".visvideo").delay(500).fadeIn("slow");
	});
	$(".kristenvideo").fancybox({
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false,
		'titleShow'		:	false,
		'overlayColor'	:	'#000',
		'overlayShow'	:	true,
		'overlayOpacity':	0.7,
		'type'			:	'iframe',
		'width'			:	590,
		'height'		:	475
	});
	$(".lenevideo").fancybox({
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false,
		'titleShow'		:	false,
		'overlayColor'	:	'#000',
		'overlayShow'	:	true,
		'overlayOpacity':	0.7,
		'type'			:	'iframe',
		'width'			:	590,
		'height'		:	475
	});
});

