$j(document).ready(function() {

	$j("#sub_menu ul li:not(.actief) a").hover(function() {
		$j(this).animate( {
			backgroundColor : "#08283c"
		}, 400);
	}, function() {
		$j(this).animate( {
			backgroundColor : "#051925"
		}, 300);
	});
	
	/*
	$j("#sub_menu ul li.actief ul li:not(.actief) a").hover(function() {
		$j(this).animate( {
			backgroundColor : "#124a6d"
		}, 10);
	}, function() {
		$j(this).animate( {
			backgroundColor : "#051925"
		}, 5);
	});*/
	
	/* fonts ook
	$j("#sub_menu ul li:not(.actief) a").hover(function() {
		$j(this).animate( {
			color : "#39b5ff"
		}, 400);
	}, function() {
		$j(this).animate( {
			color : "white"
		}, 300);
	});
	*/

});



