var hyhInsertMapId = 1;
function insertMap(location)
{
	if (window.hyhInsertMap == undefined) {
		window.hyhInsertMap = {}
	}
	window.hyhInsertMap[hyhInsertMapId] = location;
	document.write('<div class="hyhInsertMap" id="'+hyhInsertMapId+'"></div>');
	++hyhInsertMapId;
}

$(function(){
	$('.hyhInsertMap').each(function(){
		$(this).googlemap({addresses:[window.hyhInsertMap[$(this).attr('id')]], zoomAfterMarkers:15});
	});
})
