/*<![CDATA[*/
function loadJS(url,load)
{
	var _script = document.createElement('script');
	_script.setAttribute('type','text/javascript');
	_script.setAttribute('src',url);
	document.getElementsByTagName('head')[0].appendChild(_script);
	if(!load)	return;
	if(document.all){
		_script.onreadystatechange = function(){
			if (this.readyState=='loaded' || this.readyState=='complete')
			{
				load();
			}
		};
	}else{
		_script.onload = function(){
			load();
		};
	}
}

function weatherLoad()
{
	MiniSite.Weather.print("Wealth");
}
loadJS("http://www.qq.com/js/j.soso.weatherV1.5.2.js",weatherLoad);
/*]]>*/