jQuery(document).ready(function() {
	
	$('.content_block p.uitleg').expander({
		slicePoint: 190,
		expandText: 'Lees meer',
		userCollapseText: '<br />[Terug inklappen]'
	});
	
	

	 /** 
	  * Handle FAQ folding
	  */
	$("h3.question span").click(function() {
		$(this).parent().parent().find('div').toggle();
		$(this).parent().toggleClass('expanded');
	});

	


	
});

$(function() {

	// Controls active textfields and textareas
	$(".textField, .textArea, .textFieldNoSize, .textAreaNoSize, .searchField").focus(function() {
		$(this).addClass("formFocus");
	});
	
	$(".textField, .textArea, .textFieldNoSize, .textAreaNoSize, .searchField").blur(function() {
		$(this).removeClass("formFocus");
	});
		
});	

function trackUser()
{
	pag = encodeURIComponent(location.href.substring(7)); scw = parseInt(screen.width); sch = parseInt(screen.height);
	ref = document.referrer; ref = ( ref == "" || ref == 'undefined' || ref.substring(0,7) != 'http://' ) ? '' : encodeURIComponent(ref.substring(7));
	src = '<img src="includes/track_user.php?pag='+pag+'&amp;ref='+ref+'&amp;scw='+scw+'&amp;sch='+sch+'" width="0" height="0" border="0" align="left" alt="" />';
	document.write(src);
}