$(document).ready(function(){
	$("#upload").submit(function(){
		ready = true
		images = false
		$("#upload input[required]").each(function(){
			if (jQuery.trim($(this).val()) == '')
			{
				ready = false
				$(this).addClass("error")
			}
			else
				$(this).removeClass("error")
		})
		if(!$("#upload input[type=radio]:checked").length)
		{
			alert("Выберите ближайший к вам город!")
			ready = false	
		}
		$("#upload input.error:first").focus()
		$("#upload input[type=file]").each(function(){
			if (jQuery.trim($(this).val()) != '')
				images = true
		})
		if (!images & ready)
		{
			alert("Как минимум должны быть загружены портрет и фотография в полный рост в купальнике!")
			ready = false	
		}
		if (!$("#upload input[name=agreement]").is(":checked") & ready)
		{
			ready = false
			alert("Для участия в конкурсе вы должны прочитать условия и отметить поле «согласиться с условиями конкурса»!")
		}
		return ready
	})
})
