var dynamic_google_map_id = 1;
$(document).ready(function() {
	$('div.map-it').each(function() {
		if( !$(this).hasClass('dynamic-google-maps-processed') ) {
			$(this).addClass('dynamic-google-maps-processed');
			this.id 	   = dynamic_google_map_id;
			var address = $(this).html();
			var content = '<a href="#" onclick="if( $(this).html() == \'Map It!\' ) { $(this).html(\'Hide Map\');initialize_map(\'' + address + '\', \'' + this.id + '\'); } else { $(this).html(\'Map It!\');$(\'#google_maps_' + this.id + '\').slideUp(); }return false;" id="map_it_link_' + this.id + '">Map It!</a><div id="google_maps_' + this.id + '" style="display:none;"><div id="map_canvas_' + this.id + '" style="width:400px;height:300px;"></div><form name="direction_form_' + this.id + '" onSubmit="get_directions(\'' + this.id + '\'); return false;">Need directions? Enter your address: <input type="text" name="from_address" /><br /><br /><input type="submit" value="  Get Directions  " /></form><a name="directions_table_' + this.id + '"></a><div id="directions_' + this.id + '"></div><div align="right"><a href="#" onclick="$(\'#map_it_link_' + this.id + '\').html(\'Map It!\');$(\'#google_maps_' + this.id + '\').slideUp();return false;">Hide Map</a></div></div>';
			// alert(content);
			$(this).html('').html(content).css('display', 'block');
			dynamic_google_map_id++;
		}
	});
});