// JavaScript Document
<!--
var yourwords = "唯一佳科技 - U盘、MP3等数码产品、电子礼品供应服务商！欢迎来电洽询：0755-89812691 、89812692 、89812693 ！　 ";
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="唯一佳科技 - U盘、MP3等数码产品、电子礼品供应服务商！欢迎来电洽询：0755-89812691 、89812692 、89812693 ！　  " + timeValue;
control=1;
}
setTimeout("flash()",speed);
}
window.onload=flash
// -->