$(function(){
	
	if($('#slideshow')[0])
	{
		$('#slideshow').easySlider({
	      prevId: 'prevBtn',             // id of the element to apply prev rules to
	      nextId: 'nextBtn',             // id of the element to apply next rules to
	      prevText: '< Forrige',          // text for autogenerated prev link
	      nextText: 'Neste >',              // text for autogenerated next link
	      autogeneratePagination: true, // will automatically generate pagination links
	      orientation: 'fade',               // 'vertical', 'fade', or anything else will assume horizontal
	      speed: 500,                    // duration of a transition
	      autoplayDuration: 5000,           // auto-play if non-zero, this is the time between transitions
	      restartDuration: 2500,         // time to restart autoplay after a user interupts and autoplay
	      loop: true,                   // loop around the content
	      hoverPause: 0,                 // when hovering, the time between transitions
	      hover: false,                  // on hover instead of onclick
	      easing: 'swing',                  // jQuery animation settings 'linear' or 'swing' (default)
	      pauseable: false,              // pause autoplay when hovering the image
	      pauseButtons: false,           // hovering over the cuttons will pause as well
	      beforeTransition: null,        // callback before transitioning
	      afterTransition: null
		});
	}
	
	$("a.popups").fancybox({
		'titleShow'		: true,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'titlePosition'	: 'inside'
	});
	
});
