$(document).ready(function() {

	$('.g-content img').each(function() {
		$(this).addClass('img-float-' + $(this).css('float'));
	});

	var weekday = new Array( "Воскресенье", "Понедельник", "Вторник", "Среда", "Четверг", "Пятница", "Суббота" );
	var month = new Array( "января", "февраля", "марта", "апреля", "мая", "июня", "июля", "августа", "сентября", "октября", "ноября", "декабря" );
	var cdate = new Date();
	$('#date-and-time').html('<p class="date">'+weekday[cdate.getDay()]+', '+cdate.getDate()+' '+month[cdate.getMonth()]+' '+cdate.getFullYear()+' г.</p><p class="time">'+cdate.getHours()+':'+(cdate.getMinutes()<10?'0':'')+cdate.getMinutes()+'</p>');
	setInterval(function(){ var cdate = new Date(); $('#date-and-time').html('<p class="date">'+weekday[cdate.getDay()]+', '+cdate.getDate()+' '+month[cdate.getMonth()]+' '+cdate.getFullYear()+' г.</p><p class="time">'+cdate.getHours()+':'+(cdate.getMinutes()<10?'0':'')+cdate.getMinutes()+'</p>'); }, 5000);

});


