//creo array de imágenes
array_imagen = new Array(4)
array_imagen[0] = new Image(120,41)
array_imagen[0].src = "img/anta.jpg"
array_imagen[1] = new Image(120,41)
array_imagen[1].src = "img/anta1.jpg"
array_imagen[2] = new Image(120,41)
array_imagen[2].src = "img/anta2.jpg"
array_imagen[3] = new Image(120,41)
array_imagen[3].src = "img/anta3.jpg"
//array_imagen[4] = new Image(120,41)
//array_imagen[4].src = "img/anta4.jpg"
//array_imagen[5] = new Image(120,41)
//array_imagen[5].src = "img/anta5.jpg"
//array_imagen[6] = new Image(120,41)
//array_imagen[6].src = "img/anta6.jpg"
//array_imagen[7] = new Image(120,41)
//array_imagen[7].src = "img/anta7.jpg"

//creo el array de URLs
array_url = new Array(4)
array_url[0] = "http://www.psicologialeon.com/"
array_url[1] = "http://www.psicologialeon.com/"
array_url[2] = "http://www.psicologialeon.com/"
array_url[3] = "http://www.psicologialeon.com/"
//array_url[4] = "http://www.psicologialeon.com/"
//array_url[5] = "http://www.psicologialeon.com/"
//array_url[6] = "http://www.psicologialeon.com/"
//array_url[7] = "http://www.psicologialeon.com/"

//variable para llevar la cuenta de la imagen siguiente
contador = 0

//función para rotar el banner
function alternar_banner(){
	window.document["banner"].src = array_imagen[contador].src
	window.document.links[0].href = array_url[contador]
	contador ++
	contador = contador % array_imagen.length
	setTimeout("alternar_banner()",4000)
}

