function toggle_sub(i) {
	if($('#tekst'+i).is(":visible")) {
		var hide = true;
	} else {
		var hide = false;
	}
	$('.foldout').hide();
	
	if(hide==false) {
		$('#tekst'+i).show();
	}
	
}

$(document).ready(function() {

	/* This is basic - uses default settings */
	
	$(".vergroting").fancybox();
	
	
	window.setInterval('scrolllogo()',100);
});

function scrolllogo() {
	 if($('#slideshow ul li').length>0) {
		 var margin = $('#slideshow ul').css('margin-left').replace('px','');
	
		 $('#slideshow ul').css('margin-left',(margin-1)+'px');	
		 
		
		 var offsetchild = $("#slideshow ul li:first-child").offset();
		 var offsetslideshow = $("#slideshow").offset();
		var breedte = $("#slideshow ul li:first-child").width()+19;
		 if(offsetchild.left+breedte<offsetslideshow.left) {
			$('#slideshow ul').css('margin-left',(parseInt(margin)+breedte)+'px');
			$("#slideshow ul li:first-child").clone().appendTo('#slideshow ul'); 
			$("#slideshow ul li:first-child").remove();
		 }
	 }
	 

	 
}

