// JavaScript Document
<!--
var yourwords = "奇塔科技 qitag.com - 互联网应用服务提供商,为您提供网站设计、用户体验优化、搜索引擎优化三合一式服务！业务咨询热线：13590319082          ";
var speed = 700;
var control = 1;

function flash()
{

var now = new Date();
var months = now.getMonth();
var days = now.getDay();
var hours = now.getHours();
var minutes = now.getMinutes();
var seconds = now.getSeconds()
var timeValue = "" + ((hours >12) ? hours -12 :hours)
timeValue += ((minutes < 10) ? ":0" : ":") + minutes
timeValue += ((seconds < 10) ? ":0" : ":") + seconds
timeValue += (hours >= 12) ? " 下午" : " 上午"

if (control == 1)
{
window.status=yourwords+" " + timeValue;
control=0;
} 
else
{
window.status="奇塔科技 qitag.com - 互联网应用服务提供商,为您提供网站设计、用户体验优化、搜索引擎优化三合一式服务！业务咨询热线：13590319082          " + timeValue;
control=1;
}
setTimeout("flash()",speed);
}
window.onload=flash
// -->