$(document).ready(function(){

	$("#fromdate").datepicker({ 
		showOn: "both", 
		buttonImage: "images/ico_calendar.gif", 
		buttonImageOnly: true 
	});
	
	$("#tilldate").datepicker({ 
		showOn: "both", 
		buttonImage: "images/ico_calendar.gif", 
		buttonImageOnly: true 
	});
	
	$("#map").jmap("init", {
			language : "en",
			mapCenter : [0, 0],
			mapType : "map",
			mapDimensions : [300, 300],
			mapZoom : 12,
			mapControlSize : "small",
			mapEnableType : false,
			mapEnableOverview : false,
			mapEnableDragging : true,
			mapEnableInfoWindows : true,
			mapEnableDoubleClickZoom : false,
			mapEnableScrollZoom : false,
			mapEnableSmoothZoom : false,
			mapEnableGoogleBar : false,
			mapEnableScaleControl : false,
			mapShowMapifiesIcon : true,
			debugMode : false
	});
	
	$("#map").jmap("searchAddress",{address: $("#map").attr('title')}, function(options, point)
	{
			$("#map").jmap("addMarker",{pointLatLng:[point.y, point.x]});
			$("#map").jmap("moveTo",{mapCenter: [point.y, point.x]});
	}); 

});
