// JavaScript Document

var opened;

var days = {0:'Неделя',1:'Понеделник',2:'Вторник',3:'Сряда',4:'Четвъртък',5:'Петък',6:'Събота'};
var months = {0:'Януари',1:'Февруари',2:'Март',3:'Април',4:'Май',5:'Юни',6:'Юли',7:'Август',8:'Септември',9:'Октомври',10:'Ноември',11:'Декември'};

Event.observe ( window, 'load', showtime);

function showtime() {
        var now = new Date();
        var hours = now.getHours();
        var minutes = now.getMinutes();
        var seconds = now.getSeconds();
		var dayoftheweek = now.getDay();
		var month = now.getMonth();
		var dayofthemonth = now.getDate();
		var year = now.getFullYear();
        var timeValue = days[dayoftheweek] + ', ';
		timeValue += months[month] + ' ' + dayofthemonth + ', '; 
		timeValue += year + ' | '; 
		timeValue += ((hours < 10) ? '0' + hours : hours);
        timeValue += ((minutes < 10) ? ":0" : ":") + minutes;
        timeValue += ((seconds < 10) ? ":0" : ":") + seconds;
        $('top_main_text').update(timeValue);
        timerID = setTimeout("showtime()",1000);
}
