//detaljer om tilpasning her:
//http://jquery.malsup.com/cycle/
//

$(document).ready(function () {
	 //Setup and start the fullscreen img
	//if ($("#fullscreenbg").length > 0) {
//		var FullscreenrOptions = { width: 1416, height: 1416, bgID: '#fullscreenbg' };
//		jQuery.fn.fullscreenr(FullscreenrOptions);
//	} 		
//	
	//activate slider
	if ($('.slider .items .item').length > 1) {
		$('.slider .items').cycle({
			fx: "fade",
			timeout: 8000,
			speed: 2000,
			pause: 1,
			prev: '.slider-prev',
			next: '.slider-next',			
			pager: '.slider-nav-wrap',
			pagerAnchorBuilder: function (idx, slide) {
			return '.slider-nav-wrap .item:eq(' + idx + ') a';
			},
			before: onBefore
		});
    }  
	
	//at end of video - resume slider
	if ($('.video-tag').length > 0) {
		if(this != null && this.addEventListener) {
			this.addEventListener(
				'ended', 
				function() { 
					$('.slider .items').cycle('resume');
				}, 
				false);
		}
	}
	
	//activate 3d object
	if ($('#rotate-image').length > 0) {
		 $('#rotate-image').reel({ frames: 24 });		
	}	
	
	//activate the share icon
	$('.share').click( function(){
		if($('.share-content').height() < 1)	{
			$('.share-content').stop().animate({'height': '60px'}, 300);	
		}	else	{
			$('.share-content').stop().animate({'height': '0px'}, 300);
		}
	});
	
	
});

function onBefore(curr, next, opts) {
	if($(next).find('video').length > 0)	{
		$('.slider-nav').animate({bottom: '-20px'}, 400, function() {});
		$('.slider .items').cycle('pause');		
	} else	{
		$('.slider-nav').animate({bottom: '10px'}, 400, function() {});
		$('.slider .items').cycle('resume');
	}
	
	
}

