var 
month = new Array();
month[0]="Januari";
month[1]="Februari";
month[2]="Mars";
month[3]="April";
month[4]="Maj";
month[5]="Juni";
month[6]="Juli";
month[7]="Augusti";
month[8]="September";
month[9]="Oktober";
month[10]="November";
month[11]="December";
var 
day = new Array();
day[0]="Söndag";
day[1]="Måndag";
day[2]="Tisdag";
day[3]="Onsdag";
day[4]="Torsdag";
day[5]="Fredag";
day[6]="Lördag";
today = new Date();
date = today.getDate();
dyStr = (day[today.getDay()]);
mthStr = (month[today.getMonth()]);
yrStr = today.getFullYear();
 suffix = (date==1 || date==21 || date==31) ? "sta" : "th" &&
 (date==2 || date==22) ? "ndra" : "tte" && (date==3 || date==23) ? "dje" : "e"
date="Idag är det: " + dyStr + ", " + date  + " " + mthStr + ", " + yrStr;
function sivamtime() {
	now=new Date();
	hour=now.getHours();
	min=now.getMinutes();
	sec=now.getSeconds();
if (min<=9) {
	min="0"+min;
 }
if (sec<=9) {
	sec="0"+sec;
 }
if (hour>12) {
	hour=hour;
	add=" ";
 }
else {
	hour=hour;
	add=" a.m";
 }
if (hour==12) {
	add=" p.m";
 }
if (hour==00) {
	hour="12";
 }

time = " - " + ((hour<=11) ? "0"+hour : hour) + ":" + min + ":" + sec 
	+ add;
document.title = 'Westholms Cross & Enduro: ' + date + time;
setTimeout("sivamtime()", 1000);

}
// End -->
