/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function life() {
	d0 = new Date('October 26, 2009'); d1 = new Date();
	var _h = 1;
	if (d1.getHours() >= 12) _h = 0;
	dt = (d1.getTime() - d0.getTime()) / (1000*60*60*24) + _h;
	document.write('<SMALL>');
	document.write('Сегодня ' + Math.round(dt) + '-й');
	document.write(' день существования сайта');
	document.write('</SMALL>');
}


