	
$(document).ready(function() {	
	
window.setTimeout(function moveEffect() {		
		$("div#main_vlak_top").stop().animate({height:'200px'},{queue:false, duration:1000, easing: 'easeOutBounce'})
		},2000);

	
// Oude code die gelijk laad zodra de pagina klaar is met laden	
	
// window.onload=function moveEffect() {		
//		$("div#main_vlak_top").stop().animate({height:'200px'},{queue:false, duration:1000, easing: 'easeOutBounce'})
//		}


});




/*

// Original

$(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	//Remove outline from links
	$("a#test").click(function(){
		$(this).blur();
	});
	
	//When mouse rolls over
	$("div#test").mouseover(function(){
		$(this).stop().animate({height:'250px'},{queue:false, duration:800, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$("li#test").mouseout(function(){
		$(this).stop().animate({height:'50px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
});

*/
