/**
 * 
 */

jQuery(document).ready(function($){
	$("#navigation .mainItem").hover(
		function() {
			if ($("div",this).queue() != null) {
				if ($("div",this).queue().length<=1)
					$("div",this).stop(true, true).slideDown('normal', 'easeOutBounce',  function() {
						// Animation complete.
					});
			}
		}
		//open div en toon juiste content			
,
		function() {
		//sluit div
			if ($("div",this) != undefined) {
				$("div",this).slideUp('normal', 'easeInQuad',  function() {
				    // Animation complete.
				});
			}	
		}
	);
});
