$(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	//Remove outline from links
	$("#navigatie_sub a").click(function(){
		$(this).blur();
	});
	
	//When mouse rolls over
	$("#navigatie_sub li.dropdown80").mouseenter(function(){
		$(this).stop().animate({height:'80px'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});
	
		$("#navigatie_sub li.dropdown100").mouseenter(function(){
		$(this).stop().animate({height:'100px'},{queue:false, duration:500, easing: 'easeOutBounce'})
	});
	
	$("#navigatie_sub li.dropdown60").mouseenter(function(){
		$(this).stop().animate({height:'60px'},{queue:false, duration:300, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$("#navigatie_sub li[class*=dropdown]").mouseleave(function(){
		$(this).stop().animate({height:'14px'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});
	
});