jQuery(document).ready(function() {
  clock();
});

function clock() {
  var time = new Date();
  var days = new Array(7);
  days[1] = 'Ïí.';
  days[2] = 'Âò.';
  days[3] = 'Ñð.';
  days[4] = '×ò.';
  days[5] = 'Ïò.';
  days[6] = 'Ñá.';
  days[7] = 'Âñ.';
  $.getJSON("http://"+location.host+"/clock.htm?"+Math.random(),function(json){
	    if(json.length > 0) {
	    	$('#clock').html(days[json[0].dayof_w]+'&nbsp;'+json[0].date);
	    }
	  });	
  setTimeout('clock()',30000);
}