// Slideshow front (http://www.htmldrive.net/items/show/582/jShowOff-jQuery-Content-Rotator.html)
	$(document).ready(function(){ 
	$('#slideshow').jshowoff({ 
			autoPlay : true,
			changeSpeed : 600,
			controls : false,
			effect : 'fade',
			hoverPause : true,
			links : true,
			speed : 7000
	});
});

// Slideshow banner 1(http://www.htmldrive.net/items/show/582/jShowOff-jQuery-Content-Rotator.html)
	$(document).ready(function(){ 
	$('#slideshow2').jshowoff({ 
			autoPlay : true,
			changeSpeed : 600,
			controls : false,
			effect : 'fade',
			hoverPause : true,
			links : false,
			speed : 7000
	});
});

// Slideshow banner 2(http://www.htmldrive.net/items/show/582/jShowOff-jQuery-Content-Rotator.html)
	$(document).ready(function(){ 
	$('#slideshow3').jshowoff({ 
			autoPlay : true,
			changeSpeed : 600,
			controls : false,
			effect : 'fade',
			hoverPause : true,
			links : false,
			speed : 7000
	});
});

// Dropdown billetter
	$(window).load(function(){
	var $multiple= $('.multiple');
	$('.button_show a').click(function(e) {
   	var $ul= $($(this).attr('href'));
    	$multiple.not($ul).hide();
    	$ul.toggle('fast');
   	 return false;
	});
});

// Bakgrunnsbilde (http://srobbin.com/jquery-plugins/jquery-backstretch/#demo / https://github.com/srobbin/jquery-backstretch#readme)
  $.backstretch("/images/sitedesign/BG_body_1.jpg", {speed: 150, centeredY: false,});

// Scroller forbi location-bar pa iPhone (http://remysharp.com/2010/08/05/doing-it-right-skipping-the-iphone-url-bar/)
/mobile/i.test(navigator.userAgent) && !location.hash && setTimeout(function () {
  if (!pageYOffset) window.scrollTo(0, 1);
}, 1000);


