//Javascripts 
<!--
	$(document).ready(function(){
		var globalSubmenuInt;
		
		$("div.twitter_btn").hover(function(){
			$(this).animate({left: 0}, 200);
		}, function(){
			$(this).animate({left: -133}, 200);
		});	
		
		$("div.facebook_btn").hover(function(){
			$(this).animate({left: 0}, 200);
		}, function(){
			$(this).animate({left: -133}, 200);
		});	
		
		$("div.linkedin_btn").hover(function(){
			$(this).animate({left: 0}, 200);
		}, function(){
			$(this).animate({left: -133}, 200);
		});	
		
		$("div#contact_btn").hover(function(){
			$(this).animate({left: 0}, 200);
		}, function(){
			$(this).animate({left: -129}, 200);
		});	
		
		var globalSubmenuInt;
		
				

		
		$("a#overons").hover(
		
			// mouseover
			function() {
				clearTimeout(globalSubmenuInt);
				
				var submenuHeight = ($(this).next("div").children().length)*25;
				
				$("#overons-submenu").show();
				$("#overons-submenu").animate({height:submenuHeight, opacity:1.0}, 500);
				$("#klantenservice-submenu").animate({height:0, opacity:0.0 }, 500);
				$("#contact-submenu").animate({height:0, opacity:0.0 }, 500);
			}, 
			// mouseout
			function() {
				globalSubmenuInt = setTimeout(
					function() {
						$("#overons-submenu").animate({height:0, opacity:0.0 }, 500);
					}, 2000
				);
			}
		);
		
		$("a#overons-link").click(function(){return false;});
		
		$("#overons-submenu").hover(
			// mouseover zet de timer out
			function() {
				clearTimeout(globalSubmenuInt);
			}, 
			function() {
				globalSubmenuInt = setTimeout(
					function() {
						$("#overons-submenu").animate({height:0, opacity:0.0 }, 500);
						$("#klantenservice-submenu").animate({height:0, opacity:0.0 }, 500);
						$("#contact-submenu").animate({height:0, opacity:0.0 }, 500);
					}, 2000
				);
			});
		
		
		
		$("a#klantenservice").hover(
		
			// mouseover
			function() {
				clearTimeout(globalSubmenuInt);
				
				var submenuHeight = ($(this).next("div").children().length)*25;
				
				$("#klantenservice-submenu").show();
				$("#klantenservice-submenu").animate({height:submenuHeight, opacity:1.0}, 500);
				$("#overons-submenu").animate({height:0, opacity:0.0 }, 500);
				$("#contact-submenu").animate({height:0, opacity:0.0 }, 500);
			}, 
			// mouseout
			function() {
				globalSubmenuInt = setTimeout(
					function() {
						$("#klantenservice-submenu").animate({height:0, opacity:0.0 }, 500);
					}, 2000
				);
			}
		);
		
		$("a#contact").hover(
		
			// mouseover
			function() {
				clearTimeout(globalSubmenuInt);
				
				var submenuHeight = ($(this).next("div").children().length)*25;
				
				$("#contact-submenu").show();
				$("#contact-submenu").animate({height:submenuHeight, opacity:1.0}, 500);
				$("#overons-submenu").animate({height:0, opacity:0.0 }, 500);
				$("#klantenservice-submenu").animate({height:0, opacity:0.0 }, 500);
			}, 
			// mouseout
			function() {
				globalSubmenuInt = setTimeout(
					function() {
						$("#contact-submenu").animate({height:0, opacity:0.0 }, 500);
					}, 2000
				);
			}
		);
		
		
		$("a#klantenservice-link").click(function(){return false;});
		
		$("#klantenservice-submenu").hover(
			// mouseover zet de timer out
			function() {
				clearTimeout(globalSubmenuInt);
			}, 
			function() {
				globalSubmenuInt = setTimeout(
					function() {
						$("#klantenservice-submenu").animate({height:0, opacity:0.0 }, 500);
					}, 2000
				);
			});
		});
//-->	
