$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('.wiezijnwij').hide();
  $('.adverteren').hide();
  $('.contact').hide();
  $('.waar').hide();
  
 // shows the slickbox on clicking the noted link
 
   /*$('a#item01').click(function() {
	$('.wiezijnwij').hide('slow');
	$('.contact').hide('slow');
 	$('.waar').hide();
	$('.adverteren').hide('slow');
	return false;
  });
   
  $('a#item02').click(function() {
	$('.contact').hide('slow');
	$('.adverteren').hide('slow');
	$('.waar').hide('slow');
	$('.wiezijnwij').slideDown('slow');
	return false;
  });*/
  
  $('a#item03').click(function() {
	$('.wiezijnwij').hide('slow');
	$('.contact').hide('slow');
	$('.adverteren').hide('slow');
	$('.waar').slideDown('slow');
	return false;
  });
  
  $('a#item04').click(function() {
	$('.wiezijnwij').hide('slow');
	$('.waar').hide('slow');
	$('.contact').hide('slow');
	$('.adverteren').slideDown('slow');
	return false;
  });
  
 // hides the slickbox on clicking the noted link
  $('a .but_sluiten').click(function() {
	$('.wiezijnwij, .adverteren, .waar, .contact').hide('slow');
	return false;
  });
 // toggles the slickbox on clicking the noted link
 // $('a#slick-toggle').click(function() {
	//$('.adverteren').toggle(400);
	//return false;
  //});
});
