// Rotador de banner's

var banx = new Array()
var enlx = new Array()
var indicex = 0
var tarx = "_self"


banx[0] = new Image()
banx[0].src = "../cupones/cupon-chico.jpg"
enlx[0] = "http://www.salidacampestre.com.ar/cupones/cupon.html"

banx[1] = new Image()
banx[1].src = "../banners/rutasyturismo_150x110.jpg"
enlx[1] = "http://www.rutasyturismo.com.ar/"


function rotax()
{
if (indicex ==  banx.length) indicex = 0

if (document.imagesx)
 {
  document.imagesx.foticox.src = banx[indicex].src  
 }
else
 {
  document.getElementById('foticox').src=banx[indicex].src
 }
indicex++
setTimeout('rotax()',8000)
}
function vetex()
{
window.open(enlx[indicex-1],tarx)
}
