$(document).ready(function()
{
	$('.hoofdmenuitem').hover(function()
	{
		$(this).css({"background-color":"#e3e3e3"});
		$(this).removeClass("hoofdmenuitem_unhovered").addClass("hoofdmenuitem_hovered");
	}, function() {
		$(this).css({"background-color":"#f80000"});
		$(this).removeClass("hoofdmenuitem_hovered").addClass("hoofdmenuitem_unhovered");
	});
	
	$('.dropdown li').hover(function()
	{
		$(this).find('a').css({"color":"#5b5b5b"});
		
	}, function()
	{
		$(this).find('a').removeAttr("style")
	});
});
