var initWeatherValue='t-p-ha-noi';
function zfWeContent(idx)
{
	var strCont='<p class="degree">'+weather[idx][2]+'</p>';
	strCont+='<div class="cont09im"><img src="http://www.thuvienquangninh.org.vn/images/'+weather[idx][3]+'" alt="" /></div>';
	strCont+='<div class="cont09txt">'+weather[idx][4]+'<br />Độ ẩm: '+weather[idx][5]+'<br />'+weather[idx][6]+'</div>';
	document.getElementById('zfWeContent').innerHTML=strCont;
};
function zfChange(this_)
{
	zfWeContent(this_.selectedIndex);
};
function zfShowWeather()
{
	var strcboWeather='<select onchange="zfChange(this);">';
	var itemindex=0;
	for(var i=0;i<weather.length;i++)
	{
		var id=weather[i][0];
		if(initWeatherValue==id)
			itemindex=i;
		var name=weather[i][1];
		strcboWeather+='<option value="'+id+'"'+(initWeatherValue==id?' selected ':'')+'>'+name+'</option>';
	}
	document.getElementById('cboWeather').innerHTML=strcboWeather+'</select>';
	zfWeContent(itemindex);
};
zfShowWeather();

