var num_foto = 1;
var sube = 1;
var intval="";

//Empezar el slide
function start_Int(){
    if(intval==""){
      intval=window.setInterval("cambia()",5500)
  }else{
      stop_Int()
  }
}

//parar el slide
function stop_Int(){
    if(intval!=""){
      window.clearInterval(intval)
      intval=""
  }
}

//funcion de slide
function cambia()
{
    if((num_foto != 6)&&(sube==1)){
        $('a','#nextBtn').click();
        num_foto++;
    }
    else{
        sube = 0;
        $('a','#prevBtn').click();
        num_foto--;

        if(num_foto == 1)
            sube = 1;
    }
}

function nueva()
{
open('http://www.fesa.es/html/piscinas/gestion.html','Sizewindow',
'width=800,height=425 scrollbars=no,toolbar=no')
}


