 $(document).ready(function(){
   $('#login_box').hide(); // Hide even though it's already hidden
   $('a.login_a').click(function() {
      $('#login_box').slideToggle("slow"); // First click should toggle to 'show'
      
	  return false;
   });
   
	$("a.zoom").fancybox({
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'titlePosition' : 'inside',
		'titleShow'     : true		
});


});

   $('#afbeeldingen').cycle('fade');
   $('#logos').cycle({fx: 'scrollDown'});

