
var holding = false;
var fotoAct = 1;
var preLoad = new Array();

function empezar() {

	if (startSlideshow)
	{
		for (i = 1; i < fotos.length; i++){
			preLoad[i] = new Image();
			preLoad[i].src = 'fotos/'+fotos[i];
		}
		
		elIntervalo = setInterval('nextImg()',5000);
	}

}

function toggleSearchTable(){

	if (document.getElementById('tabBusca').style.display == 'none')
	{
		document.getElementById('tabBusca').style.display = 'inline';
		document.images['arrowBusca'].src = 'imagenes/arrow-up.gif';
	} else {
		document.getElementById('tabBusca').style.display = 'none';	
		document.images['arrowBusca'].src = 'imagenes/arrow-dwn.gif';
	}

}

function toggleMenu(idDiv, nameImg){

	if (document.getElementById(idDiv).style.display == 'none')
	{
		document.getElementById(idDiv).style.display = 'inline';
		document.images[nameImg].src = 'imagenes/arrow-gold-dwn.gif';
	} else {
		document.getElementById(idDiv).style.display = 'none';	
		document.images[nameImg].src = 'imagenes/arrow-gold.gif';
	}

}

function nextImg() {

	if (!holding)
	{

		fotoAct++;
		if (fotoAct < fotos.length){

//			document.images['fotoGrande'].src = "fotos/" + fotos[fotoAct];

			if (document.all){
				document.images['fotoGrande'].style.filter="blendTrans(duration=2)";
				document.images['fotoGrande'].filters.blendTrans.Apply();
				document.images['fotoGrande'].src = "fotos/" + fotos[fotoAct];
				document.images['fotoGrande'].filters.blendTrans.Play();

				preLoad[fotoAct].src = fotos[fotoAct+1];

			} else {
				document.images['fotoGrande'].src = "fotos/" + fotos[fotoAct];
			}

		} else {

//			document.images['fotoGrande'].src = "fotos/" + fotos[1];

			if (document.all){
				document.images['fotoGrande'].style.filter="blendTrans(duration=2)";
				document.images['fotoGrande'].filters.blendTrans.Apply();
				document.images['fotoGrande'].src = "fotos/" + fotos[1];
				document.images['fotoGrande'].filters.blendTrans.Play();
			} else {
				document.images['fotoGrande'].src = "fotos/" + fotos[1];
			}

			fotoAct = 1;

		}

	}

}

function holdImg(fotoId){

	holding = true;

	if (document.all){
		document.images['fotoGrande'].style.filter="blendTrans(duration=0.5)";
		document.images['fotoGrande'].filters.blendTrans.Apply();
		document.images['fotoGrande'].src = "fotos/" + fotoId;
		document.images['fotoGrande'].filters.blendTrans.Play();
	} else {
		document.images['fotoGrande'].src = "fotos/" + fotoId;
	}

}


function right(e) {

	if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)) return false;
	else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) {
		alert("© Argentina-Rent.");
		return false;
	}
	return true;
}

document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;

setTimeout('empezar()',5000);