<!-- 
if (document.images) {
img1on=new Image();
img1on.src="../images/nav/btn1on.gif";
img2on=new Image();
img2on.src="../images/nav/btn2on.gif";
img3on=new Image();
img3on.src="../images/nav/btn3on.gif";
img4on=new Image();
img4on.src="../images/nav/btn4on.gif";
img5on=new Image();
img5on.src="../images/nav/btn5on.gif";

img1off=new Image();
img1off.src="../images/nav/btn1off.gif";
img2off=new Image();
img2off.src="../images/nav/btn2off.gif";
img3off=new Image();
img3off.src="../images/nav/btn3off.gif";
img4off=new Image();
img4off.src="../images/nav/btn4off.gif";
img5off=new Image();
img5off.src="../images/nav/btn5off.gif";

}

function imgon(imgName) {
	if (document.images) {
	document[imgName].src = eval(imgName + "on.src");
	}
}

function imgoff(imgName) {
	if (document.images) {
	document[imgName].src = eval(imgName + "off.src");
	}
}
function shortMonthArray() {
this[0] = "January"; this[1] = "February"; this[2] = "March"; this[3] = "April"; this[4] = "May"; this[5] = "June";
this[6] = "July"; this[7] = "August"; this[8] = "September"; this[9] = "October"; this[10] = "November"; this[11] = "December";
return (this);
}
function getlongYear(year){
year = d.getYear();
if (year < 1000)
year+=1900;
return year;
}

function writeDate(){
shortMonths = new shortMonthArray();
d = new Date();
day = d.getDate();
month = d.getMonth();
year = d.getYear();
str = shortMonths[month] + " " +day + " " +"th. " +getlongYear(year);
document.writeln(str);
}

// -->

