// JavaScript Document
$(document).ready(function(){

	$("#galery_images img").click(function(){	
		$("#big_image").hide();
		cadena = $(this).attr("alt");
		cadena = cadena.replace(/thumb_/, "")
		$("#big_image").attr("src",$(this).attr("title")).fadeIn("slow");
		$("#grande").attr("href",'aplication/webroot/imgs/catalogo/'+cadena).fadeIn("slow");
		$("#link").attr("href",'aplication/webroot/imgs/catalogo/'+cadena).fadeIn("slow");
	});

	
});

$(document).ready(function(){

	$("#galery_images a").click(function(){	
		$("#aqui").hide();
		var title = "aplication/utilities/img.php?imagen="+$(this).attr("title")+"&w=200&h=100";
		$("#aqui").attr("src",title).fadeIn("slow");
		$("#aqui").attr("alt",$(this).attr("title")).fadeIn("slow");
		$("#aqui").attr("title",'aplication/webroot/imgs/catalogo/'+$(this).attr("title")).fadeIn("slow");
		
	});

	
});

function video(id, tip){
 window.open("videos.php?id="+id+"&tipo="+tip,"","width=425,height=344");
}

function ver(img){
/*	var t = $("#img"+img).attr("src");
	alert(t);*/
	alert($("#img"+img).attr("src"));
}
function busqueda(url,texto){
	
	document.fbuscar.action = url+'&q=' + texto.value;
	document.fbuscar.submit();
}

function checkTheKey(keyCode){
	if(event.keyCode==13){	
		valida();
		return true ;
	}
	return false ;
}
function validnum(e) { 
	tecla = (document.all) ? e.keyCode : e.which; 
	//alert(tecla)
    if (tecla==8 || tecla==46) return true; //Tecla de retroceso (para poder borrar) 
    // dejar la línea de patron que se necesite y borrar el resto 
    //patron =/[A-Za-z]/; // Solo acepta letras 
    patron = /\d/; // Solo acepta números
    //patron = /\w/; // Acepta números y letras 
    //patron = /\D/; // No acepta números 
    // patron = /[\d.-]/; numeros el punto y el signo -
    te = String.fromCharCode(tecla); 
    return patron.test(te);  
	// uso  onKeyPress="return validnum(event)"
}


function ver_compromiso(){
  $('#nosotros').hide('slow');
  $('#compromiso').show('slow');
}
function ver_nosotros(){
  $('#compromiso').hide('slow');
  $('#nosotros').show('slow');
}

function validar(){
	if(document.f1.nombre.value==""){
		alert("ERROR: Por favor ingrese su Nombre");
		document.f1.nombre.focus();
		return false;
	}else if(document.f1.apellidos.value==""){
		alert("ERROR: Por favor ingrese sus Apellidos");
		document.f1.apellidos.focus();
		return false;
	}else if(document.f1.email.value==""){
		alert("ERROR: Por favor ingrese su Email");
		document.f1.email.focus();
		return false;
	}else if(document.f1.telefono.value==""){
		alert("ERROR: Por favor ingrese su Telefono");
		document.f1.telefono.focus();
		return false;
	}else if(document.f1.mensaje.value==""){
		alert("ERROR: Por favor dejenos su comentario");
		document.f1.mensaje.focus();
		return false;
	}else{
		document.f1.action="enviar.php";
		document.f1.submit();
		
	}
	
}


