// stop BackgroundImageCache voor IE				
try	{ document.execCommand("BackgroundImageCache", false, true); } catch(e) { }

/**
 * variabelen met jQuery met een $ beginnen!!!
 */
$(function()
{
	///* submenu effectje en timeout */
	$("#menu li").hover( function() {$(this).addClass("hover"); }, function() {$(this).removeClass("hover"); });

	//Menu.apply("#menu li");	

	$("#nieuwsoverzicht li").hoverClick();
	
	setTimeout("$('.logo img').fadeIn(1600)", 500);
	
	// Formulier focus op velden
	$(":input").not("input[type=button], input[type=submit], input[type=radio], input[type=checkbox]")
		.focus(function() 	{ $(this).addClass("veldfocus"); })
		.blur(function() 	{ $(this).removeClass("veldfocus"); });

});


Cufon.replace('h1');
