
$(function(){

	// Fix for content area
	$('.g-content img').each(function(){ $(this).addClass('img-float-' + $(this).css('float')); });

	// Date and time
	var weekday = new Array( 'Воскресенье', 'Понедельник', 'Вторник', 'Среда', 'Четверг', 'Пятница', 'Суббота' );
	var month = new Array( 'января', 'февраля', 'марта', 'апреля', 'мая', 'июня', 'июля', 'августа', 'сентября', 'октября', 'ноября', 'декабря' );
	var cdate = new Date();
	$('#date-and-time').html('<span class="date">'+weekday[cdate.getDay()]+', '+cdate.getDate()+' '+month[cdate.getMonth()]+' '+cdate.getFullYear()+' г.</span> <span class="time">'+cdate.getHours()+':'+(cdate.getMinutes()<10?'0':'')+cdate.getMinutes()+'</span>');
	setInterval(function(){ var cdate = new Date(); $('#date-and-time').html('<span class="date">'+weekday[cdate.getDay()]+', '+cdate.getDate()+' '+month[cdate.getMonth()]+' '+cdate.getFullYear()+' г.</span> <span class="time">'+cdate.getHours()+':'+(cdate.getMinutes()<10?'0':'')+cdate.getMinutes()+'</span>'); }, 5000);

	// Collage
	$('#slider').nivoSlider({
		effect: 'boxRain', //fade
		slices: 15,
		boxCols: 12,
		boxRows: 4,
		animSpeed: 500,
		pauseTime: 5000,
		directionNav: true,
		directionNavHide: false,
		controlNav: false,
		keyboardNav: false,
		pauseOnHover: false,
		manualAdvance: false,
		prevText: '',
		nextText: '',
		captionOpacity: 0.8
	});

	// Forms
	$('form input[type=text].numeric').keypress(function(e){
		if ( e.which!=8 && e.which!=0 && (e.which<48 || e.which>57) ) {
			return false;
		}
	});

});


