window.addEvent('domready',function(){
	//日期以及天气预报
	var todayDate = new Date();
	if (todayDate.getDay() == 5) week = "星期五";
	if (todayDate.getDay() == 6) week = "星期六";
	if (todayDate.getDay() == 0) week = "星期日";
	if (todayDate.getDay() == 1) week = "星期一";
	if (todayDate.getDay() == 2) week = "星期二";
	if (todayDate.getDay() == 3) week = "星期三";
	if (todayDate.getDay() == 4) week = "星期四";
	
  var hh = todayDate.getHours(); 
  var mm = todayDate.getMinutes(); 
  var clock = hh + ':' + mm ;	
	var html= todayDate.getFullYear() + "年" + (todayDate.getMonth()+1) + "月" + todayDate.getDate()+"日 ";
	html+=    todayDate.getHours() + ':' + todayDate.getMinutes() + ' ' + week;
	html+=    '<iframe src="http://m.weather.com.cn/m/pn4/weather.htm" width="200" height="16" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"></iframe>';
    $('weather').set('html', html);
});


