
/********************************************************************
/********************************************************************
/**
/**  Proyecto HCMS Herarchical Content Managment System 
/** (Sistema Manejador de Contenido Jerárquico)
/**  ------------------------------------
/**  Ver. 0.2 Beta
/** (c)2008 por Mike Rosas
/**  Mikzael@hotmail.com
/**
/**  Para más información, por favor leer el documento leeme.htm
/**
/********************************************************************
/********************************************************************/


function init(){
	rotator(0);
}


function rotator(n){
	$$('.image').invoke('hide');
	$('h_' + n).appear({duration: 0.5 });
	n++;
	if(n>9) n=0;
	setTimeout("rotator(" + n + ");", 4000);
}