﻿$(document).ready(function() {
	$(".menu a").each(function() {
		$(this).mouseover(function() {
			$(this).stop().animate({opacity:0.7},100);
		});
		$(this).mouseout(function() {
			$(this).stop().animate({opacity:1},100);
		});
	});
	$(".joinus a").each(function() {
		$(this).mouseover(function() {
			$(this).stop().animate({opacity:0.7,top:'1px'},100);
		});
		$(this).mouseout(function() {
			$(this).stop().animate({opacity:1,top:'3px'},10);
		});
	});
});

function epicValidate() {
	if ($("#name").val() == "") {alert("Введите имя"); $("#name").focus(); return false}
	else if ($("#bank").val() == "") {alert("Введите банк"); $("#bank").focus(); return false}
	else if ($("#position").val() == "") {alert("Введите должность"); $("#position").focus(); return false}
	else if ($("#email").val() == "") {alert("Введите адрес почты"); $("#email").focus(); return false}
	else {return true}
}
