$(document).ready(function() {  
  
    /* Слайд шоу */
    
      $('#slideshow').cycle({ /* Левая часть */
        fx: 'fade',
        speed: 4000, 
        timeout:  6000
      });     

      $('#slideshow_2').cycle({ /* Правая часть */
        fx: 'fade',
        speed: 4000, 
        timeout:  6000 
      });
      
    /* Слайд шоу */
    
    function resize_img () {
      var width_test = $(window).width();
      var product_image_1 = $('.product_image_1').attr('width');
      
      
      if (width_test <=1280 && width_test >=1000) {
        
        var width_test_1 = 262 - Math.floor((1280- width_test)/2.5);
        var width_test_2 = 200 - Math.floor((1280- width_test)/2);
        
        var width_sun_1 = 509 - Math.floor((1280- width_test)/1.2);
        var width_sun_2 = 382 - Math.floor((1280- width_test)/1.5);
        
        var width_product = product_image_1 - (1280- width_test);
        
        $('.img_dem_2').width(width_test_1);
        
        $('.product_image_1').width(width_product);
        
      } else if (width_test >=1280) {
        
        $('.img_dem_2').width('262');
        $('.product_1').height('200');
        
        
        if (product_image_1 > 900) {
          $('.product_image_1').width('900');
        }
        
        $('.image_sun_2').height('382');
      } else if (width_test <=1000) {                      
      
        var width_product_1000 = product_image_1 - 280;
        $('.product_image_1').width(width_product_1000);
        
      }
    }
    
    resize_img ();
    
    window.onresize = function() {
      resize_img();
    }
    
  
	
	//////////////////////////////////////
  
    /* Форма заказа воды */
    
      $('#form_1 legend').click(function () { 
        $(this).addClass("drop"); 
        $(this).next().show("slow");
        $("#form_2").hide(0);
        return false;
      });
	
      $('#form_2 legend').click(function () {
        $(this).addClass("drop"); 
        $(this).next().show("slow");
        $("#form_1").hide(0);
        return false;
      });
      
    /*//Форма заказа воды */
	
   //$(".big_map").attr("width", 80%);
   
   
});
