<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- begin

var months=new Array(13);
months[1]="januar";
months[2]="februar";
months[3]="mart";
months[4]="april";
months[5]="maj";
months[6]="jun";
months[7]="jul";
months[8]="avgust";
months[9]="septembar";
months[10]="oktober";
months[11]="novembar";
months[12]="decembar";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000)    // Y2K Fix, Isaac Powell
year = year + 1900; // http://onyx.idbsu.edu/~ipowell
document.write("<font size='1' face='Arial,Helvetica' color='#555555'>" + date + "." + " ");
document.write(lmonth + " " + year + "." + "</font>");
// end -->
