Buenas, el problema es el siguiente, en un edificio vigilado con cámaras de red tengo 16 cámaras por lo que he creado 4 páginas en donde se ven 4 cámaras en cada una de ellas.
¿Cómo podría hacer que después de X tiempo fuese cambiando la página en el monitor y hacer un bucle entre esas 4 páginas?

He estado buscando en google pero no he encontrado nada, si para rotar imágenes fijas, banners.. pero no para que esos iframes vayan cambiando.

No se me ocurre nada, para "llamar" a las cámaras lo hago de dos formas diferentes según el modelo, a la mayoría poniendo directamente su ip, a otras sin embargo las enlazo a través de un archivo html.

Os pongo un código de ejemplo:
Código:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
	<title>Camaras edificio hackhispano</title>
</head>
<body bottommargin="0" leftmargin="0" marginheight="0" marginwidth="0" rightmargin="0" topmargin="0">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
	<td width="50%"><iframe id="ct111" name="ct111" src="Camara1.html" marginwidth="0" marginheight="0" style="Z-INDEX: 0; VISIBILITY: visible; WIDTH: 100%; HEIGHT: 290px;" scrolling="no" frameborder="0"></iframe></td>
	<td width="50%"><iframe id="ct112" name="ct112" src="Camara2.html" marginwidth="0" marginheight="0" style="Z-INDEX: 0; VISIBILITY: visible; WIDTH: 100%; HEIGHT: 290px;" scrolling="no" frameborder="0"></iframe></td>
</tr>
<tr>
	<td width="50%"><iframe id="ct113" name="ct113" src="http://XX.XX.XX.XX:XXXX" marginwidth="0" marginheight="0" style="Z-INDEX: 0; VISIBILITY: visible; WIDTH: 100%; HEIGHT: 290px;" scrolling="no" frameborder="0"></iframe></td>
	<td width="50%"><iframe id="ct114" name="ct114" src="http://XX.XX.XX.XX:XXXX" marginwidth="0" marginheight="0" style="Z-INDEX: 0; VISIBILITY: visible; WIDTH: 100%; HEIGHT: 290px;" scrolling="no" frameborder="0"></iframe></td>
	<td width="50%">&nbsp;</td>
</tr>
</table>
<br><br><br>
</body>
</html>
Si a alguien se le ocurre algo se lo agradecería mucho. Saludos