$(function() {
		   
	$("ul#nieuwsoverzicht li").hover(
	function() {
		$(this).addClass("hover");
	},
	function() {
		$(this).removeClass("hover");
	});
	
	/* Formulier input */	
	$("#content .formmodule input, #content .formmodule textarea").focus(function() {
		$(this).css("background", "#ffffff");
	});
	
	$("#content .formmodule input, #content .formmodule textarea").blur(function()	{
		$(this).css("background", "#d0dde9");
	});
	
	/* Formulier input button */
	$("#content input.button").focus(function()	{
		$(this).css("background", "#0a3d74");
	});
	
	$("#content input.button").blur(function() {
		$(this).css("background", "#0a3d74");
	});

});