//zorgen dat de uitschuif wordt geregeld met de offerte
$(document).ready(function()	{

	$(".contactBalkSlide").toggle(function(event)	{

		$(this).next(".slideContent").slideDown("slow");

	},
	function(event)	{

		$(this).next(".slideContent").slideUp("slow");

	});

})