function y2k(number) { return (number < 1000) ? number + 1900 : number; }
function Dates(){

var day="";
var month="";
var myweekday="";
var year="";
newdate = new Date();
mydate = new Date();
newtime=newdate.getTime();

myday = mydate.getDay();
mymonth = mydate.getMonth();
myweekday= mydate.getDate();
myyear= y2k(mydate.getYear());
year = parseInt(myyear);

myhours = mydate.getHours();
if (myhours >= 12) {
myhours = (myhours == 12) ? 12 : myhours - 12; mm = " PM";
}
else {
myhours = (myhours == 0) ? 12 : myhours; mm = " AM";
}
myminutes = mydate.getMinutes();
if (myminutes < 10){
mytime = ":0" + myminutes;
}
else {
mytime = ":" + myminutes;
};
arday = new Array("Неделя","Понеделник","Вторник","Сряда","Четвъртък","Петък","Събота")
armonth = new Array(" Януари"," Февруари"," Март"," Април"," Май"," Юни"," Юли"," Август"," Септември", " Октомври"," Ноември"," Декември")
ardate = new Array("0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31");

var time = (ardate[myweekday] +" "+armonth[mymonth] + ", " + year);
document.write(time);
}

if (document.images) {

	homenav01On = new Image();
	homenav01On.src = "images/home_nav_on_01.gif";
	homenav02On = new Image();
	homenav02On.src = "images/home_nav_on_02.gif";
	homenav03On = new Image();
	homenav03On.src = "images/home_nav_on_03.gif";
	homenav04On = new Image();
	homenav04On.src = "images/home_nav_on_04.gif";
	homenav05On = new Image();
	homenav05On.src = "images/home_nav_on_05.gif";


	homenav01Off = new Image();
	homenav01Off.src = "images/home_nav_off_01.gif";
	homenav02Off = new Image();
	homenav02Off.src = "images/home_nav_off_02.gif";
	homenav03Off = new Image();
	homenav03Off.src = "images/home_nav_off_03.gif";
	homenav04Off = new Image();
	homenav04Off.src = "images/home_nav_off_04.gif";
	homenav05Off = new Image();
	homenav05Off.src = "images/home_nav_off_05.gif";
	
	subnav01On = new Image();
	subnav01On.src = "images/sub_nav_on_01.gif";
	subnav02On = new Image();
	subnav02On.src = "images/sub_nav_on_02.gif";
	subnav03On = new Image();
	subnav03On.src = "images/sub_nav_on_03.gif";
	subnav04On = new Image();
	subnav04On.src = "images/sub_nav_on_04.gif";
	subnav05On = new Image();
	subnav05On.src = "images/sub_nav_on_05.gif";

	subnav01Off = new Image();
	subnav01Off.src = "images/sub_nav_off_01.gif";
	subnav02Off = new Image();
	subnav02Off.src = "images/sub_nav_off_02.gif";
	subnav03Off = new Image();
	subnav03Off.src = "images/sub_nav_off_03.gif";
	subnav04Off = new Image();
	subnav04Off.src = "images/sub_nav_off_04.gif";
	subnav05Off = new Image();
	subnav05Off.src = "images/sub_nav_off_05.gif";
	
}
function imgAct(imgName) {
	if (document.images) {
		document.images[imgName].src = eval(imgName + "On.src");
	}
}
function imgInact(imgName) {
	if (document.images) {
		document.images[imgName].src = eval(imgName + "Off.src");
	}
}
