$(document).ready(function(){
	var why=$("#why");
	$(".mail.button").click(function(){$("#mailing").show();return false;});
	$("#mailing-form").validate({
		messages: {
			mail: {
				required: 'Укажите вашу электропочту, чтобы мы смогли<br /> ответить',
				email: 'Введите правильную электропочту',
			},
			message: {
				required: 'О чем вы хотели нас спросить?'
			}
		}		
	});
	$("#mailing-form").ajaxForm(function() { 
		$("#mailing").hide();
		alert("Спасибо за вопрос. Мы прочитаем и ответим :-)");
	});
	$(".close, .ok-button").click(function(){$(this).parents(".d-shadow").hide()});
	$(".why-link").click(function(){
		var this_link=$(this);
		$(".content",why).html(this_link.parent().siblings(".why-text").html());
		why.css({'top':this_link.parents(".three-column").offset().top - 300 +'px'}).fadeIn('fast');return false;
	});
	
	var date = new Date(),
		monthes = ['января', 'февраля', 'марта', 'апреля', 'мая', 'июня', 'июля', 'августа', 'сентября', 'октября', 'ноября' ,'декабря'];
	$("#issue-info .date").text(date.getDate() + ' ' + monthes[date.getMonth()] + ' ' + date.getFullYear() + ' года');
});

      
        /* использование: <a class='scrollTop' href='#' style='display:none;'></a> 
        ------------------------------------------------- */  
        $(function(){  
            var e = $(".scrollTop");  
            var speed = 100;  
      
            e.click(function(){  
                $("html:not(:animated)" +( !$.browser.opera ? ",body:not(:animated)" : "")).animate({ scrollTop: 0}, 500 );  
                return false; //важно!  
            });  
            //появление  
            function show_scrollTop(){  
                ( $(window).scrollTop()>300 ) ? e.fadeIn(600) : e.hide();  
            }  
            $(window).scroll( function(){show_scrollTop()} ); show_scrollTop();  
        });  


