jQuery(document).ready(function() {

	/*$(".baradach").hover(function() { alert(1);
		//$(this).show();
	} , function() { alert(2);
		//$(this).hide();
	});
	
	$(".jcarousel-next-horizontal").click( function() { alert("Hello"); return false;} )
	*/
	
	$(".jcarousel-next-horizontal, .jcarousel-prev-horizontal").live("mouseover mouseout", function(event) {
	  if ( event.type == "mouseover" ) {
		$(this).css("background-position", "0 270px");
	  } else {
		$(this).css("background-position", "0 -50px");
	  }
	});
	
	//Включение кнопки самбит, когда введены все параметры
	function check_sumbit()
	{
		if($('input[name="fio"]').val().trim() != '' && $('input[name="email"]').val().trim() != '' && $('input[name="tel"]').val().trim() != '' && $('input[name="captcha"]').val().trim() != '' && $('select[name="delivery"]').val().trim() != 0 && $('textarea[name="message"]').val().trim() != '' )
			$('input[name="send"]').removeAttr('disabled');
		else
			$('input[name="send"]').attr('disabled', 'disabled');
		
	}
		
	//Отключение кнопеи отправить в форме онлайн-заказа, до тех пор, пока не заплнены все поля
	$('input[name="fio"], input[name="email"], input[name="tel"], input[name="captcha"], textarea[name="message"]').keyup(function() {
	 	check_sumbit();
	});
	
	$('select[name="delivery"]').change(function() {
		check_sumbit();
	});
});
