    function setToelichtingSwitcher(){
        $('.toelichtingswitcher').each(function (){
            if (this.id != "boop"){
                this.id = "boop";
                $('.toelichtingContent').hide();
                $(this).click(function(){
		            $('.toelichtingContent').slideToggle("fast");
		            $('.toelichtingswitcher').toggleClass("selected");
		            return false;
		        });
		    }
	    });
	}

$(document).ready(function()
{  
	/* Zoeken */
	$('.zoekterm').attr("value", "Uw zoekterm");
	$('.zoekterm').focus(function(){
		if($(this).val() == "Uw zoekterm") {
			$('.zoekterm').attr("value", "");
		}
	});
	$('.zoekterm').blur(function(){
		if($(this).val() == "") {
			$('.zoekterm').attr("value", "Uw zoekterm");
		}
	});

	$('input').hover(function(){
		$(this).addClass("hover");
	}, function(){
		$(this).removeClass("hover");
	});

    setInterval(setToelichtingSwitcher, 200);


	if($('.toelichtingContent').length > 0){
		$('.toelichtingContent').hide();
	}

	$('#carousel').jcarousel({
        scroll: 1
    });
	

	 $('#navigation li').hover(function(){
		$('.balloon', this).css({"left":"-10px"});
		$('.balloon', this).fadeIn('fast');
	 }, function(){
		$('.balloon', this).fadeOut('fast');
	 });
	 
	 $('.balloon').hover(function(){
		$(this).fadeOut('slow');
	 });

});
