/*perfumeria perdigero avila*/

/*variables globales*/
var marco=1;
//var marco2=2;
var total_impar=7;			
														
																
function recojer(upodown){

//modificacion de las variable marco
if (upodown ==1 ){
   marco = marco + 1;
  // marco2 = marco2 + 2;
  
 }
else{
   marco = marco - 1;
   //marco2 = marco2 - 2;
  
 }

//control de marco y botones
if (marco <= 1){
 marco=1;
// marco2=2;

 document.boton1.src='../comun/izdaover.gif';
 }
else if(marco >= total_impar){
 marco=total_impar;
// marco2=total_impar +1;

 document.boton2.src='../comun/dchaover.gif';
 }
else{
 document.boton1.src='../comun/izda.gif';
 document.boton2.src='../comun/dcha.gif';
 }

 //muestro par de imagenes
  mostrar();
}

function mostrar()
{
eval("document.matriz.src=img"+marco+".src")
//eval("document.matriz2.src=img"+marco2+".src")

}

function control_over(ito){
  if(ito==1){
     document.boton1.src='../comun/izdaover.gif';
  }
  else{
   document.boton2.src='../comun/dchaover.gif';
  }
}
function control_out(ito){
  if(marco==1){
  document.boton1.src='../comun/izdaover.gif';
  document.boton2.src='../comun/dcha.gif';
  }
  else if(marco==total_impar){
  document.boton1.src='../comun/izda.gif';
  document.boton2.src='../comun/dchaover.gif';
  }
  else{
	  if(ito==1){
	     document.boton1.src='../comun/izda.gif';
	  }
	  else{
	   document.boton2.src='../comun/dcha.gif';
	  }
  }	  
}

function grande(num)
{
	   if(num==1) foto=marco;
	  // else  foto=marco2;
		//formo string
	     var fgrande = new String(eval("img"+foto+".src"))
		desde = 0;
		pos = fgrande. indexOf("foto", desde);	 
		pos_f=fgrande.length;
		//me quedo con foto8.jpg
		aux=fgrande.slice(pos,pos_f)
		aux="grandes/"+aux;
		abrir(aux,ancho[foto],alto[foto]);
}
