$(document).ready(function() {    	/* Map and Marker */   jQuery('#map1').jmap('init', {'mapType':'map','mapZoom':14,'mapCenter':[27.496985, -82.572325], 'mapEnableType':'true', 'mapShowjMapsIcon':'false'});	jQuery('#map1').jmap('CreateMarkerManager');	for (var i=0;i<10;i++) {	var lat = 27.496985;	var lng = -82.572325;	jQuery('#map1').jmap('AddMarker', {'pointLatLng': [lat,lng],'pointHTML': '<p><strong>Shinn &amp; Company, LLC</strong><br />1001 3rd Avenue West<br />Bradenton, FL 34205</p>'});	}		/* Directions */	jQuery('#query-submit-1').click(function(){	    jQuery('#map1').jmap('SearchDirections', {	        'query': jQuery('#query').val() + ' to: 1001 3rd Avenue West, Bradenton, FL 34205',	        'panel':'#directions1',			  'clearLastSearch': true	    }, function(result, options) {	         var valid = Mapifies.SearchCode(result.getStatus());	         if (valid.success) {	           jQuery.each(result.Placemark, function(i, point){	             jQuery('#map1').jmap('AddMarker',{	               'pointLatLng':[point.Point.coordinates[1], point.Point.coordinates[0]],	               'pointHTML':point.address	             });	           });	         } else {	           jQuery('#address').val(valid.message);	         }	   });	   return false;		});				});