<!--
// 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]="Gener";
months[2]="Febrer";
months[3]="Mar&ccedil;";
months[4]="Abril";
months[5]="Maig";
months[6]="Juny";
months[7]="Juliol";
months[8]="Agost";
months[9]="Setembre";
months[10]="Octubre";
months[11]="Novembre";
months[12]="Desembre";
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]="Diumenge";
days[1]="Dilluns";
days[2]="Dimarts";
days[3]="Dimecres";
days[4]="Dijous";
days[5]="Divendres";
days[6]="Dissabte";
var lday=days[time.getDay()];

//-->

