/*
 *********************************************
 * powered by jQuery (http://www.jquery.com)
 * 
 * written by www.JSV-ICT.nl
 * ********************************************
 */
 
$(function(){
	
	$(".meerinfoblock").hide();

	$(".meerinfo").toggle(function(){
		$(this).addClass("active"); 
		}, function () {
		$(this).removeClass("active");
	});
	
	$(".meerinfo").click(function(){
		$(this).next(".meerinfoblock").slideToggle("slow,");
	});
	

});
