var slide_running = false;
var nuestros_productos_running = false;
var change_prod_running = false;
var cache = [];

(function($) {
  $.preLoadImages = function() {
    var args_len = arguments.length;
    for (var i = args_len; i--;) {
      var cacheImage = document.createElement('img');
      cacheImage.src = arguments[i];
      cache.push(cacheImage);
    }
  }
})(jQuery)

function saltar_video(){
	$f(0).stop();
	video_finish();
}

function show_video(idioma){
	$f(0).play("video/spot.mov");
	$('#first-left').hide('slide',{ direction: 'left' },2000);
	$('#first-right').hide('slide',{ direction: 'right' },2000,function(){
		$('#video').fadeIn(100,function(){
			$('#video').css('z-index','400');
		});
	});
}

function video_finish(){
	$('#video').fadeOut(500,function(){
		$('#content-left').show('slide',{ direction: 'left' },2000);
		$('#content-right').show('slide',{ direction: 'right' },2000);
		$('#menu').fadeIn(1000);
	});
}

function change_prod(id){
	var changes = id.split("-");
	var section =  changes[1];
	var new_prod = changes[2];
	var prod_actual = null;
	if(section == 'left'){
		$('#prods-menu-left > div').each(function(){
			if($(this).css('display') != 'none'){
				prod_actual = $(this).attr('id');
				prod_actual = prod_actual.substring(15,16);
				return false;
			}
		});
	}
	else{
		$('#prods-menu-right > div').each(function(){
			if($(this).css('display') != 'none'){
				prod_actual = $(this).attr('id');
				prod_actual = prod_actual.substring(16,17);
				return false;
			}
		});
	}
	if(prod_actual != new_prod){
		if(!change_prod_running){
			change_prod_running = true;
			$('#prod-info-'+section+'-'+prod_actual).fadeOut(2000, function(){
				$('#prod-info-'+section+'-'+new_prod).fadeIn(2000, function(){
					change_prod_running = false;
					return false;
				});
				return false;
			});
		}	 
	}
}

function slide_productes(seccio, noslide){
	if(noslide == true){
		if(seccio == 'left'){
			$('#video').hide();
			$('#main-right').css('z-index', '0');
			$('#main-left').css('z-index', '1000');
			$('#prods-menu-left').hide();
			$('#prods-right').hide();
			$('#first-right').hide();
			$('#first-left').hide();
			$('#content-right').show();
			$('#prods-'+seccio).show();
		}
		else if(seccio == 'right'){
			$('#video').hide();
			$('#main-left').css('z-index', '0');
			$('#main-right').css('z-index', '1000');
			$('#prods-menu-right').hide();
			$('#prods-left').hide();
			$('#first-right').hide();
			$('#first-left').hide();
			$('#content-left').show();
			$('#prods-'+seccio).show();
		}
	}
	else{
		if(!slide_running){
			slide_running = true;
			$('#link-muestra').hide();
			if(seccio == 'left') {
				$('#main-right').css('z-index','0');
				$('#main-left').css('z-index','1000');
			}
			else {
				$('#main-left').css('z-index','0');
				$('#main-right').css('z-index','1000');
			}
			$('#content-'+seccio).hide('slide',{ direction: seccio },2000, function() {
				if($('#prods-menu-'+seccio).css('display') != 'none'){
					$('#prods-menu-'+seccio).hide();
				}
				if($('#main-prods-'+seccio).css('display') == 'none'){
					$('#main-prods-'+seccio).show();
				}
				$('#prods-'+seccio).show('slide',{ direction: seccio },2000);
				slide_running = false;
			});
		}
	}
}

function nuestros_productos_link(){
	if(!slide_running && !nuestros_productos_running){
		nuestros_productos_running =  true;
		if($('#first-left').css('display') != 'none' || $('#first-right').css('display') != 'none'){
			$('#video').hide();
			$('#main-left').css('z-index', '0');
			$('#prods-menu-right').hide();
			$('#prods-left').hide();
			$('#first-right').hide();
			$('#first-left').hide();
			$('#content-left').show();
			$('#content-right').show();
			$('#link-muestra').show();
			nuestros_productos_running = false;
		}
		else{
			if($('#prods-left').css('display') != 'none'){
				$('#content-left').hide();
				$('#prods-left').hide('slide',{ direction: "left" },2000, function() {
					$('#content-left').show('slide',{ direction: "left" },2000, function(){
						nuestros_productos_running = false;
					});
				});
				$('#link-muestra').show();
				$.history.add('productos');
			}
			else if($('#prods-right').css('display') != 'none'){
				$('#content-right').hide();
				$('#prods-right').hide('slide',{ direction: "right" },2000, function() {
					$('#content-right').show('slide',{ direction: "right" },2000, function(){
						nuestros_productos_running = false;
					});
				});
				$('#link-muestra').show();
				//$.history.add('productos');
			}
		}
		if(nuestros_productos_running) nuestros_productos_running=false;
	}
}

