function initSliders()
{  
	//$(".faq div.faq_antwoord").hide();
	//$(".faq div.faq_antwoord").hide();
	$(".faq .toggle").css("cursor","pointer");
	
	$(".faq .toggle").click(function()
	{
		
		$(".faq div.faq_antwoord").slideUp();
		var checkElement = $(this).next();
		if(checkElement.is(':visible'))
		{
			checkElement.slideUp();
		} 
		else
		{
			checkElement.slideDown();
		}
	});
}

$(document).ready(function()
{
	initSliders();
});