//<![CDATA[    
$(document).ready(function(){
	// open external links in new window
	$('a[@href^="http://"]').click(function() {
	 window.open($(this).attr('href'));
	 return false;
	});

// BEGIN FAQ-LIST
	$(".antwoord").hide();
	$(".vraag").click(function(event){
		$(this).next(".antwoord").toggle();
		return false;
	});
// END FAQ-LIST

		$('#image-ticker').serialScroll({
			items:'div',
			duration:800,
			force:true,
			axis:'y',
			lazy:true,
			interval:5000,
			step:1
		});	

});

//]]>
