/* 此網頁設計人-劉海錢*/
var titletxt = new Array (
 "Alex Lau - 為此網頁的設計人 ",
 "如閣下有興趣設計個人的網頁, 請聯絡本人 : ", 
 "電話 (852) 9183-0274",
 "或電郵至 chin@lauhoichin.com "
);
var ary_p=0;
function changetitle() 
{ 
window.document.title=titletxt[ary_p];    // 顯示標題文字
if (ary_p == 3) ary_p=0; else ary_p++;
setTimeout("changetitle()",4000);         // 等待 4 秒後顯示另一個標題文字

}
changetitle();
