function initWord1(placeId)
{
	var param = {"id":placeId};
 	$.ajax({type:"POST", url:"/pc/coord!getPlaceWeatherByPlace.do", data:param, dataType:"json", success:function (data) {
 		var allHtm = "<a href=\"void(0)\" onmouseover=\"hidTable()\" onmouseout=\"showTable()\">三日天气</a><table width=\"200\" border=\"1\" cellspacing=\"0\" id=\"syslt\" cellpadding=\"0\" style=\"display:none;\"><tr><td>sdfdsf</td></tr></table>";
		$("#showWordTip").empty().html(allHtm);
	}});
}
function initWord(placeId)
{
	$.getJSON("http://map.lvmama.com/pc/coord!getPlaceWeatherByPlace.do?id="+placeId+"&jsoncallback=?",function(json){
		var allHtm="";
		if(json.isTure=="true")
		{
		allHtm ="今日："+decodeURI(json.weathers[0].weather)+"&nbsp;&nbsp;"+json.weathers[0].cel+"<a href=\"#\" onmouseout=\"showTable()\" onmousemove=\"hidTable()\" >三日天气</a>"+
		"<div id=\"syslt\" class=\"weather_forecast\" style=\"position: absolute;  display: none; left: 732px; top: 170px\">"+
				  "<table width=\"250\" border=\"0\">"+
				  "<tr>"+
				    "<td><div align=\"center\">今天<br/>"+decodeURI(json.weathers[0].weather)+"</div></td>"+
				    "<td><div align=\"center\">明天<br/>"+decodeURI(json.weathers[1].weather)+"</div></td>"+
				   " <td><div align=\"center\">后天<br/>"+decodeURI(json.weathers[2].weather)+"</div></td>"+
				  "</tr>"+
				  "<tr>"+
				   "<td><div align=\"center\"><img src=\"http://map.google.com"+json.weathers[0].image+"\" width=\"40\" height=\"40\" /></div></td>"+
				    "<td><div align=\"center\"><img src=\"http://map.google.com"+json.weathers[1].image+"\" width=\"40\" height=\"40\" /></div></td>"+
				    "<td><div align=\"center\"><img src=\"http://map.google.com"+json.weathers[2].image+"\" width=\"40\" height=\"40\" /></div></td>"+
				  "</tr>"+
				  "<tr>"+
				    "<td><div align=\"center\">"+json.weathers[0].cel+"℃</div></td>"+
				    "<td><div align=\"center\">"+json.weathers[1].cel+"℃</div></td>"+
				    "<td><div align=\"center\">"+json.weathers[2].cel+"℃</div></td>"+
				  "</tr>"+
				"</table>"+
				"</div>";
		}
		$("#showWordTip").empty().html(allHtm);
	}); 
}

function showTable()
{
	document.getElementById("syslt").style.display="none";
}
function hidTable()
{
	document.getElementById("syslt").style.display="";
}