// Scripts for functionality function thirds() { var maxHeight = -1; jQuery('.thirds').each(function() { maxHeight = maxHeight > jQuery(this).height() ? maxHeight : jQuery(this).height(); }); jQuery('.third').each(function() { jQuery(this).height(maxHeight-80); }); } jQuery(function(){ jQuery('.mobile-menu').on('click', function(e){ e.preventDefault(); jQuery('ul.navigation').toggle(); }); thirds(); });