<!-- 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='#CCCCCC'>" + date + "." + " ");
document.write(lmonth + " " + year + "." + "</font>");
// end -->
