

$(document).ready(function() {

  $('.brief_slideshow').cycle({
        fx:     'fade',
        timeoutFn: calculateTimeout 
    });
  
  $('.evangelium_slideshow').cycle({
        fx:     'fade',
        timeout: 10000,
		random: 1
    }); 

  $(".team a").fancybox({
	'titleShow'		: false,
	overlayOpacity	: 0.3,
	overlayColor		: '#000' 						
  });

  $(".fancy_img").fancybox({
    'titleShow'		: true,
	overlayOpacity	: 0.8,
	overlayColor		: '#000' 
  });
  
  $(".eijh_video_link").fancybox({
	'titleShow'		: false,
	overlayOpacity	: 0.8,
	overlayColor		: '#000'
  });
  
  $('.accordion_head').click(function() {
		$(this).next().slideToggle('slow');
		return false;
	}).next().hide();

  
});
			
$(function() {
  $(".lavaLampWithImage").lavaLamp({
    fx: "backout",
    speed: 700,
   click: function(event, menuItem) {
      return true;
    }
  });
});

function calculateTimeout(currElement, nextElement, opts, isForward) { 
    var index = opts.currSlide;
	return index % 2 ? 20000 : 1000; 
} 
