var tope=null;
var maxi = 10;
function scrollg(){

if (cuantas>=10){
cuantas = 10;
}
	var not = cuantas;
	for (i=0;i<=cuantas-1;i++){
	document.getElementById("not_"+i).style.height=130+"px";

	}
	tope=tope-1;
	if (tope<-130*not-30){
		tope=130;
		document.getElementById("todas").style.top=tope;
	}
	document.getElementById("todas").style.top = tope+'px'; 
	tiempo = setTimeout("scrollg(cuantas)",20);
	
	document.getElementById('todas').onmouseover =function(){
		det = true 
		clearTimeout(tiempo) 
	} 
	document.getElementById('todas').onmouseout =function(){
		//alert (cuantas);
		det = false;
		clearTimeout(tiempo);
		scrollg(cuantas);
	} 
}
function continuar()
{
if(det == false)
	{scrollg()}
}