// Initialise scripts
$(document).ready(function() {
  // No background on last li
  $('.templ_2 #main li:last').css('background', 'none');    
  
 // Slideshow
 $('.slideshow div img:gt(0)').hide();
  setInterval(function(){
    $('.slideshow div img:first').fadeOut(2000)
       .next('img').fadeIn(2000)
       .end().appendTo('.slideshow div');}, 
    4000); 

 // Ticker
 $('#home .update li:gt(0)').hide();
  setInterval(function(){
    $('#home .update li:first').fadeOut(2000)
       .next('li').fadeIn(2000)
       .end().appendTo('#home .update ul');}, 
    6000);    
  
  // Hide email
  $('span.mailme').mailme();  

  /*$("li.reserveren a").fancybox({
	'width'				: '80%',
	'height'			: '80%',
	'autoScale'			: false,
	'transitionIn'		: 'none',
	'transitionOut'		: 'none',
	'type'				: 'iframe'
  });*/
  $("a[rel=pics]").fancybox(); 
});

