<!--
// please keep this text when you copy the source code
// made by Ragecreations version 0.2

//Get Date
var months=new Array(13);
months[1]="janúar";
months[2]="febrúar";
months[3]="mars";
months[4]="apríl";
months[5]="maí";
months[6]="júní";
months[7]="júlí";
months[8]="ágúst";
months[9]="september";
months[10]="október";
months[11]="nóvember";
months[12]="desember";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000) 
year = year + 1900; 

//Get Time
var now = new Date();
var hours = now.getHours();
var minutes = now.getMinutes()
var timeValue = "" + ((hours >12) ? hours -12 :hours)
if (timeValue == "0") timeValue = 12;
timeValue += ((minutes < 10) ? ":0" : ":") + minutes
timeValue += (hours >= 12) ? " pm" : " am"

//Get Day
var days=new Array(7);
days[0]="sunnudagur";
days[1]="mánudagur";
days[2]="þriðjudagur";
days[3]="miðvikudagur";
days[4]="fimmtudagur";
days[5]="föstudagur";
days[6]="laugardagur";
var lday=days[time.getDay()];

//-->

