/*Activa la galerķa*/
$(function() {
	$('.lightbox').lightBox();
	});
/*Form validation*/
function validarforma() {
    var name = document.forms['forma'].Nombre;
    var email = document.forms['forma'].Email;
    var comment = document.forms['forma'].Mensaje;

	if (name.value == "Nombre")
    {
        window.alert("Por favor dinos tu nombre.");
        name.focus();
        return false;
    }
    if (email.value == "E-mail")
    {
        window.alert("Por favor escribe tu e-mail.");
        email.focus();
        return false;
    }
    if (email.value.indexOf("@", 0) < 0)
    {
        window.alert("Escribe correctamente tu e-mail.");
        email.focus();
        return false;
    }
    if (email.value.indexOf(".", 0) < 0)
    {
        window.alert("Escribe correctamente tu e-mail.");
        email.focus();
        return false;
    }
    if (comment.value == "Mensaje")
    {
        window.alert("Por favor escribe tu mensaje.");
        comment.focus();
        return false;
    }
    return true;
}