$(document).ready(function() {
	$("#news_headlines div:first").addClass('first-child');
	
	try {
		$('#carousel').jcarousel({
			scroll: 1,
			auto: 2,
			wrap: 'last'
		});
	}
	catch(e) { }
	
	try
	{ 
		
		$(".doelgroep").each(function (index, domEle) {
			var eleid = $(this).attr('id');
			$(this).hover(
				function () {
					$("#"+eleid+"_text").show();
				},
				function() {
					$("#"+eleid+"_text").hide();
				}
			)
		});
	}
	catch(e) { }
});

