$(document).ready(function(){
	var larguraTela = $(window).width();

	//menu
	if (larguraTela < 767) {
		$(".nav > .menu-item > a").click(function(event){
		  event.preventDefault();
		});
	}  

  //iguala tamanho dos elementos
  if (larguraTela > 767) {
    $('.matchHeight').matchHeight();
  }
});