


$(document).ready(function() {
						   
	//$("p[id*='desc-hospital-']").hide();						   
	
	
	
	loadGoogleMaps();
	
	$("#txt_start_address").live("click", function() {
		
		if ($(this).val()=='Enter Start Address...') {
			$(this).val('');
		}
	});
	
	$("div[id*='']").live("click", function() {
		var element_id = $(this).attr("id").toLowerCase();
		var hospital_id = element_id.slice(element_id.lastIndexOf("-") + 1);	
		
		if ($("p#desc-hospital-" + hospital_id).is(":hidden"))
			$("p#desc-hospital-" + hospital_id).fadeIn("slow");
		else
			$("p#desc-hospital-" + hospital_id).fadeOut("slow");
			
	});
						   
});
