$(document).ready(function() {$(".pages_menu_btn").hover(function() {$(this).find(".pages_menu_div").show();},function() {$(this).find(".pages_menu_div").hide();}); $("#show-hide-menu").click(function(e) {e.preventDefault(); $("#top-menu").toggleClass("resp");}); }); var map; function initializeMapID(ID, lat, lng, zom) { var latlng = new google.maps.LatLng(lat, lng); var settings = { zoom: zom, center: latlng, mapTypeControl: true, fullscreenControl: true, mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU}, navigationControl: true, navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL}, mapTypeId: google.maps.MapTypeId.ROADMAP }; map = new google.maps.Map(document.getElementById(ID), settings); var companyPos = new google.maps.LatLng(lat, lng); var companyMarker = new google.maps.Marker({ position: companyPos, map: map }); } $(document).on('keyup', function(e) { if(e.which == 40 || e.which == 38 || e.which == 27) { var el = $($(this)[0].activeElement).next('ul'); if(e.which == 40) { el.show(); } if(e.which == 38 || e.which == 27) { el.hide(); } } });