function settitle() {
var a = "..:: 5th BUILD Asia - International Exhibition & Conferences ::..  ";
var b = "..:: 5th BUILD Asia - 1 - 3 August 2009 at Karachi Expo Centre - Pakistan ::..  ";
var c = "..:: 5th BUILD Asia - International Housing, Real Estate & Construction Industry Show ::..  ";
 var t = new Date();
 s = t.getSeconds();
 if (s == 10) {
  document.title = a;}
 else if (s == 20) {
 document.title = b;}
 else if (s == 30) {
 document.title = c;}
 else if (s == 40) {
 document.title = a;}
 else if (s == 50) {
 document.title = b;}
 else if (s == 00) {
 document.title = c;}
 setTimeout("settitle()", 1000);
 }

