//Schattig hulpvenster!

document.writeln("<style>#hulpvenstera:hover{text-shadow:none;}</style>")

setTimeout(appear,1000);

function appear() {
	var anim = {};
	anim["top"]=GiveResult();
	$("#hulp_venster_1").animate(anim,1000);
	setTimeout(appear,1000);
}

function GiveResult(){
	return Math.round(
	
	document.documentElement.scrollTop+($(window).height()-120)
	
	)+"px";
}
