// JavaScript Document
function ChangeWeather(obj)
{
	if(obj==1)
	{
		document.getElementById("idImageMay").src="../images/ngaymaythaydoi.gif";
		document.getElementById("idSoATT").src="../images/2.gif";
		document.getElementById("idSoBTT").src="../images/5.gif";
		document.getElementById("idChiTietTT").innerHTML="<b>Mây thay đổi</b><br />Độ ẩm 73%<br />Gió đông nam<br />Tốc độ: 1m/s";
	}
	else
		if(obj==2)
		{
			document.getElementById("idImageMay").src="../images/coluccomua.gif";
			document.getElementById("idSoATT").src="../images/2.gif";
			document.getElementById("idSoBTT").src="../images/2.gif";
			document.getElementById("idChiTietTT").innerHTML="<b>Có mưa</b><br />Độ ẩm 93%<br />Gió tây bắc<br />Tốc độ: 3m/s";
		}
		else
			if(obj==3)
			{
				document.getElementById("idImageMay").src="../images/i_nhieumay.gif";
				document.getElementById("idSoATT").src="../images/2.gif";
				document.getElementById("idSoBTT").src="../images/5.gif";
				document.getElementById("idChiTietTT").innerHTML="<b>Không mưa</b><br />Độ ẩm 83%<br />Gió đông bắc<br />Tốc độ: 3m/s";
			}
			else
				if(obj==4)
				{
					document.getElementById("idImageMay").src="../images/ngaymaythaydoi.gif";
					document.getElementById("idSoATT").src="../images/3.gif";
					document.getElementById("idSoBTT").src="../images/2.gif";
					document.getElementById("idChiTietTT").innerHTML="<b>Mây thay đổi</b><br />Độ ẩm 65%<br />Gió đông nam<br />Tốc độ: 8m/s";
				}
				else
					if(obj==5)
					{
						document.getElementById("idImageMay").src="../images/i_nhieumay.gif";
						document.getElementById("idSoATT").src="../images/2.gif";
						document.getElementById("idSoBTT").src="../images/6.gif";
						document.getElementById("idChiTietTT").innerHTML="<b>Không mưa</b><br />Độ ẩm 79%<br />Lăng gió";
					}
					else
						if(obj==6)
						{
							document.getElementById("idImageMay").src="../images/i_nhieumay.gif";
							document.getElementById("idSoATT").src="../images/2.gif";
							document.getElementById("idSoBTT").src="../images/9.gif";
							document.getElementById("idChiTietTT").innerHTML="<b>Nhiều mây</b><br />Độ ẩm 68%<br />Gió tây bắc<br/>Tốc độ: 4m/s";
						}
						else
							if(obj==7)
							{
								document.getElementById("idImageMay").src="../images/i_nhieumay.gif";
								document.getElementById("idSoATT").src="../images/2.gif";
								document.getElementById("idSoBTT").src="../images/9.gif";
								document.getElementById("idChiTietTT").innerHTML="<b>Không mưa</b><br />Độ ẩm 80%<br />Gió đông bắc<br/>Tốc độ: 6m/s";
							}
							else
								if(obj==8)
								{
									document.getElementById("idImageMay").src="../images/ngaymaythaydoi.gif";
									document.getElementById("idSoATT").src="../images/2.gif";
									document.getElementById("idSoBTT").src="../images/9.gif";
									document.getElementById("idChiTietTT").innerHTML="<b>Mây thay đổi</b><br />Độ ẩm 65%<br />Gió đông đông bắc<br/>Tốc độ: 2m/s";
								}
								else
									if(obj==9)
									{
										document.getElementById("idImageMay").src="../images/i_nhieumay.gif";
										document.getElementById("idSoATT").src="../images/2.gif";
										document.getElementById("idSoBTT").src="../images/6.gif";
										document.getElementById("idChiTietTT").innerHTML="<b>Nhiều mây</b><br />Độ ẩm 78%<br />Gió tây bắc<br/>Tốc độ: 2m/s";
									}
}