﻿$(document).ready(function() {
	$('.top_action .cont_action').mouseover(function() {
		$(this).find('.more').hide();
		$(this).find('.more_over').show();
	});
	$('.top_action .cont_action').mouseout(function() {
		$(this).find('.more').show();
		$(this).find('.more_over').hide();
	});
	$('.top_action .list_actions .item').mouseover(function() {
		$(this).find('img').hide();
		$(this).find('img.over').show();
	});
	$('.top_action .list_actions .item').mouseout(function() {
		$(this).find('img').show();
		$(this).find('img.over').hide();
	});

	CreateForm('.form_call');
	CreateForm('.form_mail');
});

function CreateForm(form) {
	$(form+' .submit a').click(function() {
		var options = {
			success: function(mes) {
			if (mes == 1) {
				$(form+' .submit').hide();
				$(form+' .error').hide();
				$(form+' .mess_result').html("Спасибо, форма успешно отправлена!").show();
			} else if (mes == -1) {
				$(form+' .error').html("Заполните обязательные поля!").show();
			}
		}
      };
      $(form+' form').ajaxSubmit(options);
   });
}
