$(document).ready(function(){
	//google maps wegbeschreibung jquery.jmap.js
	if ($('.#map').length){
		$.getScript('../js/jquery.jmap.js', function(){
		  $('#map').jmap('init', {
				mapCenter:[51.1433041,7.2965590],
				mapEnableType: true,
				mapEnableOverview: true,
				mapEnableScrollZoom: false,
				mapEnableSmoothZoom: true,
				mapEnableGoogleBar: false,
				mapEnableScaleControl: true,
				mapShowMapifiesIcon: false
				  }, function(el, options){
			$(el).jmap('AddMarker', {pointLatLng:[51.1433041,7.2965590], pointHTML: "<strong>MTH Medizintechnik</strong><br />Heinrich-Schicht-Straße 4<br />42499 Hückeswagen"});
			$('.submit').click(function(){
			$('#directions').html('');
			 //$('#directions').remove();
			  $(el).jmap("SearchDirections", {
					fromAddress: $('#from').val(), 
					toAddress: $('#to').val(), 
					panel:"#directions",
					locale:"de_DE"});	
			});

		  });
		});
	}
	 //google maps wegbeschreibung ende
});

