function LoadScripts(){
	var aantal = document.getElementById("aantalfilms");
	for (i = 1; i <= aantal.value; i++){		
		var container = "containerHeight"+i;		
		container = new Fx.Height('detail_film_'+i, {height: true, opacity: true, duration: 380});
		container.hide();
	}	
	new Ajax.Autocompleter("zoeken","hint","zoekquery.php",{});
}
 
window.onload = LoadScripts;

function toggleit(p_i,p_speed){
	container = new Fx.Height('detail_film_'+p_i, {height: true, opacity: true, duration: p_speed});
	container.toggle();
}

var count = 0;
function toggleall(){
	var toon = document.getElementById("toon");
	var verberg = document.getElementById("verberg");	
	if(!count){
		toon.style.display = 'none';
		verberg.style.display = 'block';
		count++;
	
		var aantal = document.getElementById("aantalfilms");
		for (i = 1; i <= aantal.value; i++){	
			if(document.getElementById("detail_film_"+i).style.height=="0px"){
				toggleit(i,190);
			}
		}
	}else{
		verberg.style.display = 'none';
		toon.style.display = 'block';
		count--;
		
		var aantal = document.getElementById("aantalfilms");
		for (i = 1; i <= aantal.value; i++){
			if(document.getElementById("detail_film_"+i).style.height!="0px"){		
				toggleit(i,190);
			}
		}
	}
	
		
}