<!--
// 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]="stycznia";
months[2]="lutego";
months[3]="marca";
months[4]="kwietnia";
months[5]="maja";
months[6]="czerwca";
months[7]="lipca";
months[8]="sierpnia";
months[9]="września";
months[10]="października";
months[11]="listopada";
months[12]="grudnia";
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]="Niedziela";
days[1]="Poniedziałek";
days[2]="Wtorek";
days[3]="Środa";
days[4]="Czwartek";
days[5]="Piątek";
days[6]="Sobota";
var lday=days[time.getDay()];

//-->

