//LOGOS SOCIALES
$(document).ready(function() {
    $('#Bar li').hover(function() {
        $(this).animate( {
            width: "40",
            height: "40"
        }, {
            queue: false,
            duration: 100
        });
    },
    function() {
        $(this).animate( {
            width: "28",
            height: "28"
        }, {
            queue: false,
            duration: 130
        });
    });

        $("#formBuscador").validate();
});
//BUSCADOR-------------->
/*
$.validator.setDefaults({
	submitHandler: function() { alert("submitted!"); }
});
*/
//$().ready(function() {
//    // validate the comment form when it is submitted
//
//
//});

//CHIKILLADA DE HEREDIA - ABRE FORM REGISTRO
function abrir()
{
    window.open("Registro/index.php","","height=700,width=600,location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no");
}
