
$(function(){

    $('.panel-head a').mouseover(function(){
        $(this).parent().addClass('tab-on').siblings().removeClass('tab-on');
        $('ul.'+this.id).show().siblings('ul').hide();
    });

	// add flash the first current class 
	$('#ifocus_tx ul li').first().removeClass('normal').addClass('current');
	$('#ifocus_btn ul li').first().removeClass('normal').addClass('current');
	
	// add time js
	setInterval("now = new Date();$('#date').html(now.toLocaleString());",1000); // no app

	$('#date2').html(DDDD);

	$('#weather').html("<iframe src='http://m.weather.com.cn/m/pn8/weather.htm?id=101181201T ' width='255' height='20' marginwidth='0' marginheight='0' hspace='0' vspace='0' frameborder='0' scrolling='no' allowtransparency='true'></iframe>");
});
