var trs=Array('#quienessomos','#inicio','#pkpk','#luplup','#cielitolindo','#cta','#urraka','#LAN');
var idx=1;
var puertaMoviendo=false;
$(function(){
	setTimeout(startMRT, 1000);
	for (var i = 0; i < trs.length; i++) {
		$(trs[i]).hide(0);
	}
});

function startMRT() {
	$('#inicio').show();
	abrirPuerta();
}

function siguiente() {
	idx++;
	if (idx >= trs.length) idx = 2;
	show(idx);
}

function show(idx) {
	
	cerrarPuerta();
	setTimeout(function() {
		for (var i = 0; i < trs.length; i++) {
			$(trs[i]).hide();
		}
		$(trs[idx]).show();
		abrirPuerta();
	}, 100*5);
}

function cerrarPuerta() {
	if (puertaMoviendo) return;
	puertaMoviendo = true;
	$('#puerta').frameAnimation({hoverMode:false, delay:100, endWithFrameOne: false, imageHeight: 2316, reverse: false});					
	setTimeout(function() { puertaMoviendo = false; }, 150);
}

function abrirPuerta() {
	if (puertaMoviendo) return;
	puertaMoviendo = true;
	$('#puerta').frameAnimation({hoverMode:false, delay:100, endWithFrameOne: false, imageHeight: 2316, reverse: true});					
	setTimeout(function() { puertaMoviendo = false; }, 150);
}
