jQuery(document).ready(function() {
	
	$('#ls_products').submit(
		function() {
			var cnt = 0;
			$(this).find('input[type=text]').each(
				function(index) {
					cnt += parseInt(this.value);
				}
			);
			if (cnt <= 0) {
				alert('Введите количество товара!');
				return false;
			}
		}
	);
   
   $(".tehhar-show").toggle(
      function () {
        $(".tehhar").show(100);
      },
      function () {
        $(".tehhar").hide(100);
      }
    );
   
   $(".blink").mouseover(function(){
      $(this).animate({opacity: 0.4 }, 200 ).animate({opacity: 1 }, 200 ); 
    });
   
   ////////////////////////
	var c = 0;
	$("#scroll_right").click(function () {
		n = $(".gallery-slide ul li").size();
	
		if(c < n-1)
		{
			$(".gallery-slide ul").animate({"left": "-=232px"}, "slow");
			
			c++;
		}
		else
		{
			$(".gallery-slide ul").animate({"left": "0px"}, "slow");
			
			c = 0;
		}
		
	});
	
	$("#scroll_left").click(function () {
		
		if(c > 0)
		{
			$(".gallery-slide ul").animate({"left": "+=232px"}, "slow");
			
			c--;
		}
		
	});
});
