(function($) {
	$(document).ready(function(){
		if ($(window).width() >= 1260) width = 1260;
		else width = $(window).width() - 2;
	//	alert(width);
		$('.main_container').width(width);
		$('.central_part').width(width - 525);
		$('TD.center').width(width - 515);
		$('#wp-calendar td a').hover(function()
			{
				$(this).parent().css('background', '#dedddb');
			},function()
			{
				$(this).parent().css('background', '#ebeae8');
			}
		);
	//	jQuery("img").focus(function(){this.blur();});
	});
	
    $(window).bind("resize", function(){ //при изменении размера окна вызываем функцию
        if ($(window).width() >= 1260) width = 1260;
		else width = $(window).width() - 2;
	//	alert(width);
		$('.main_container').width(width);
		$('.central_part').width(width - 525);
		$('TD.center').width(width - 515);
		$('#wp-calendar td a').hover(function()
			{
				$(this).parent().css('background', '#dedddb');
			},function()
			{
				$(this).parent().css('background', '#ebeae8');
			}
		);
	//	jQuery("img").focus(function(){this.blur();});
    });
})(jQuery);

function checkform(form)
{	
	
	if (form.name.value == '') {alert("Укажите имя"); return false;};
	if (form.email.value == '') {alert("Укажите e-mail, телефон или скайп");  return false;};
	if (form.text.value  == '') {alert("Вы забыли текст");return false;};
	return true;
}
