$(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	//Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
	

	//When mouse rolls over
	$("li.home").mouseover(function(){
		$(this).stop().animate({height:'232px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	//When mouse rolls over
	$("li.club").mouseover(function(){
		$(this).stop().animate({height:'305px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	//When mouse rolls over
	$("li.homepages").mouseover(function(){
		$(this).stop().animate({height:'180px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse rolls over
	$("li.games").mouseover(function(){
		$(this).stop().animate({height:'450px'},{queue:false, duration:590, easing: 'easeOutBounce'})
	});
	
	//When mouse rolls over
	$("li.wedstrijden").mouseover(function(){
		$(this).stop().animate({height:'180px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse rolls over
	$("li.stem").mouseover(function(){
		$(this).stop().animate({height:'337px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse rolls over
	$("li.verhalen").mouseover(function(){
		$(this).stop().animate({height:'395px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse rolls over
	$("li.kleintjes").mouseover(function(){
		$(this).stop().animate({height:'250px'},{queue:false, duration:600, easing: 'easeOutBounce'});
	});
		
	//When mouse is removed
	$("li").mouseout(function(){
		$(this).stop().animate({height:'20px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	document.getElementById('topbar').style.display="block";
	
});
