$(function()	{
	
	// hover class voor IE6
	if($.browser.msie && $.browser.version < 7)
	{
		$("#submenu li, #overzicht li, #details tbody tr, #details li").hover(
			function()	{	$(this).addClass('hover');		},
			function()	{	$(this).removeClass('hover');	}
		);
		$("#submenu li.david").hover(
			function()	{	$(this).addClass('davidhover');		},
			function()	{	$(this).removeClass('davidhover');	}
		);
	}
	
	$("#overzicht li").click(function()
	{
		window.location = $("a", this).attr("href");
	});
	
	// nieuws ticker
	$('#nieuws ul').css({visibility: "visible"});
	$('#nieuws ul').innerfade({
		speed			: 750,
		timeout			: 4000,
		animationtype	: 'fade',
		containerheight	: '3em'
	});

	
});