$(document).ready(function(){
		$("#businessUnits_blokken li").hover(
		function () {
			$(this).addClass("hover");
			$(this).children("a").children("strong").css ("display", "none");
			$(this).children("div").css ("display", "block");
			$(this).siblings("li").children("a.bussinessUnits").css ("height","159px");
			$(this).siblings("li").children("a").children("strong").css ("display","none");
	/*		$(this).parent().children("a").children("strong").css ("display", "none");
			$(this).parent().children("div").css ("display", "block");
			$(this).parent().siblings("li").children("a.bussinessUnits").css ("height","159px");
			$(this).parent().siblings("li").children("a").children("strong").css ("display","none");*/
		},
		function () {
			$(this).removeClass("hover");
			$(this).children("a").children("strong").css ("display", "block");
			$(this).children("div").css ("display", "none");
			$(this).siblings("li").children("a.bussinessUnits").css ("height","210px");
			$(this).siblings("li").children("a").children("strong").css ("display","block");
			
			}
		);
		});
		
		
		
	$(document).ready(function(){
		$("#businessUnits_blokken .nav_submenu").hover(
		function () {
			$(this).css("display","block");
	/*		$(this).parent().children("a").addClass("hover");
			$(this).parent().siblings().children("a.bussinessUnits").css ("height","159px")
			$(this).parent().siblings().children("a").children("strong").css("display","none")
			$(this).parent().children("a").children("strong").css("display","none")*/
			$(this).children("a").addClass("hover");
			$(this).siblings().children("a.bussinessUnits").css ("height","159px")
			$(this).siblings().children("a").children("strong").css("display","none")
			$(this).children("a").children("strong").css("display","none")
		},
		function () {
		//	$(this).css("display","none");
			/*$(this).parent().children("a").removeClass("hover");
			$(this).parent().siblings().children("a.bussinessUnits").css ("height","210px")
			$(this).parent().siblings().children("a").children("strong").css("display","block")
			$(this).parent().children("a").children("strong").css("display","block")*/
			$(this).children("a").removeClass("hover");
			$(this).siblings().children("a.bussinessUnits").css ("height","210px")
			$(this).siblings().children("a").children("strong").css("display","block")
			$(this).children("a").children("strong").css("display","block")
			}
		);
	});
