// JavaScript Document
<!-- se oculta la informaci&oacute;n de los navegadores antiguos

            //Specify the marquee's width (in pixels)
         var marqueewidth=100;
            //Specify the marquee's height
         var marqueeheight=130;
            //Specify the marquee's scroll speed (larger is faster)
         var speed=2;
           //Specify the marquee contents

var   marqueecontents='<br><br><br><br>';

	marqueecontents+='<p class=normal><a href="documentos/presentacion.pdf"><strong>PRESENTACION</strong><\/a><br>Ya está disponible la presentación departamental<br> <a href="documentos/presentacion.pdf"><strong>[ PDF (3.6 MB) ]<\/strong><\/a> <br><br><\/p>';

     marqueecontents+='<p class=normal><a href="documentos/poster.pdf"><strong>POSTER</strong><\/a><br>Descarga el poster departamental<br> <a href="documentos/poster.pdf"><strong>[ PDF (0.6 MB) ]<\/strong><\/a><br><br><\/p>';

	 marqueecontents+='<p class=normal><a href="http://www.cenidet.edu.mx/seleccion/"><strong>SELECCIÓN 2010<\/strong><\/a><br>El proceso de selección 2010 ha iniciado. Consulta la sección de selección de aspirantes 2010.<br> <a href="http://www.cenidet.edu.mx/seleccion/"><strong>[ver más...]<\/strong><\/a><br><br><\/p>';
	
    marqueecontents+='<p class=normal><a href="admision/fechas.html"><strong>FECHAS IMPORTANTES</strong><\/a><br>Información sobre fechas para el envío de documentos, entrevistas, presentación de exámenes y trámites de inscripción, así como el calendario de actividades del Departamento de Ingeniería Mecánica<br> <a href="admision/fechas.html"><strong>[ver más...]<\/strong><\/a><br><br><\/p>';

	 

document.write('<marquee id=idm direction=up onMouseOut="continuar();" onMouseOver="parar_mar();" scrollAmount='+speed+' width='+marqueewidth+' height='+marqueeheight+'>'+marqueecontents+'</marquee>')

function parar_mar()
	{
		speed=0;
		
		document.getElementById(idm.scrollAmount=speed);
	}
function continuar()
	{
		speed=3;
		document.getElementById(idm.scrollAmount=speed);
		
		
	}
		function regenerate()
		{
			window.location.reload()
		}
		function regenerate2()
		{
			if (document.layers)
			{
				setTimeout("window.onresize=regenerate",450)
				intializemarquee()
			}
}
function intializemarquee(){
document.cmarquee01.document.cmarquee02.document.write(marqueecontents)
document.cmarquee01.document.cmarquee02.document.close()
thelength=document.cmarquee01.document.cmarquee02.document.height
scrollit()
}
function scrollit(){
if (document.cmarquee01.document.cmarquee02.top>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.top-=speed
setTimeout("scrollit()",100)
}
else{
document.cmarquee01.document.cmarquee02.top=marqueeheight
scrollit()
}
}
window.onload=regenerate2

// final del comentario -->
