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

	if (name.value == "Name")
    {
        window.alert("Please tell us your name.");
        name.focus();
        return false;
    }
    if (email.value == "E-mail")
    {
        window.alert("Please enter a valid e-mail.");
        email.focus();
        return false;
    }
    if (email.value.indexOf("@", 0) < 0)
    {
        window.alert("Please enter a valid e-mail.");
        email.focus();
        return false;
    }
    if (email.value.indexOf(".", 0) < 0)
    {
        window.alert("Please enter a valid e-mail.");
        email.focus();
        return false;
    }
    if (comment.value == "Message")
    {
        window.alert("Oops! You forgot your message to us.");
        comment.focus();
        return false;
    }
    return true;
}