$(document).ready(function() {
 $('.google_map').hide();
 
 $('#zbr_map').click(function(event) {
	 $('#office').toggle(500);
	 $(this).toggleClass('active');
	 checkResize(event);
 });

});