// source --> https://clinicaveterinarium.es/wp-content/themes/veterinarium/js/menu.js 
$(function() {
var pull = $('#pull');
nav_movil = $('nav ul');
nav_movilHeight = nav_movil.height();

$(pull).on('click', function(e) {
e.preventDefault();
nav_movil.slideToggle();
});
});

$(window).resize(function(){
var w = $(window).width();
if(w > 320 && nav_movil.is(':hidden')) {
nav_movil.removeAttr('style');
}
});