//<iframe> script by Dynamicdrive.com
//Specify speed of scroll. Larger=faster (ie: 5)
var scrollspeed=cache=2
dataobj=null;
thelength=0

function initializeScroll(){
	marqueeheight=Element.getHeight('seccionesWeb')
	dataobj=$('seccionesWebContainer')
	dataobj.style.top=5+"px"
	thelength=Element.getHeight('seccionesWebContainer')
	
	scrolltest()
}

function scrolltest(){
	dataobj.style.top=(parseInt(dataobj.style.top)-scrollspeed)+"px"
	if (parseInt(dataobj.style.top)<thelength*(-1))
	dataobj.style.top=5+"px"
	setTimeout("scrolltest()",50)
}
