
			try
			{
				var wg = '03';
				var wd = '76';
				var wf = 'Partly Sunny';
			
				if (document.all)
				{
					document.all['weatherImage'].src = "http://www.heraldsun.com/images/weather/small/"+wg+".gif";
					document.all['weatherDeg'].innerHTML = wd + ' &deg;';
					document.all['weatherForecast'].innerHTML = wf;
				}
				else
				{
					document.getElementById('weatherImage').src = "http://www.heraldsun.com/images/weather/small/"+wg+".gif";
					document.getElementById('weatherDeg').innerHTML = wd + ' &deg;'
					document.getElementById('weatherForecast').innerHTML = wf;
				}
			}
			catch (e) {}
	

