function clock() {
var title="Kayaks by Bo";
var date=new Date();
var year=date.getYear();
var month=date.getMonth();
var day=date.getDate();
var hour=date.getHours();
var minute=date.getMinutes();
var second=date.getSeconds();
var months=new Array("JAN", "FEB", "MAR", "APR", "MAY", "JUNE", "JULY", "AUG", "SEP", "OCT", "NOV", "DEC")

var monthname=months[month];

if (hour > 12) {
hour=hour- 12;
}

if (minute < 10) {
minute="0"+minute;
}

if (second < 10) {
second="0"+second;
}


document.title=title+"  .:: "+monthname+" "+day+" ::. "+hour+":"+minute+":"+second;

setTimeout("clock()", 1000)

}

