$(document).ready(function() 
{
    var width = $(window).width();
    
    // Для женской коллекции
    $(window).resize(WomanImgResize);
    $(window).resize(ArrowsMove);
    $(window).resize(MainImgResize);
    WomanImgResize();
    ArrowsMove();
    MainImgResize();
    
    //alert(width);
    /*
	if (width < 990){
		$('.mainp_header').css({ "background" : "url(/images/mainImg/main800.jpg) no-repeat center", "height" : "235px"})
		$('.txt1').css({"font-size" : "11px", "margin-top" : "5px", "margin-right" : "380px", "width" : "200px"})
		$('.txt2').css({"font-size" : "9px", "margin-top" : "55px", "margin-right" : "300px", "width" : "300px"})
		$('.main_menu').css({"font-size" : "11px"})
	}else if(width >= 990 && width < 1200){
		$('.mainp_header').css({ "background" : "url(/images/mainImg/main1024.jpg) no-repeat center", "height" : "301px"})
		$('.txt1').css({"font-size" : "14px", "margin-top" : "10px", "margin-right" : "490px", "width" : "200px"})
		$('.txt2').css({"font-size" : "11px", "margin-top" : "80px", "margin-right" : "390px", "width" : "300px"})		
	}else if(width >= 1200 && width < 1600){
		$('.mainp_header').css({ "background" : "url(/images/mainImg/main1280.jpg) no-repeat center", "height" : "376px"})
		$('.txt1').css({"font-size" : "16px", "margin-top" : "20px", "margin-right" : "630px", "width" : "200px"})
		$('.txt2').css({"font-size" : "14px", "margin-top" : "90px", "margin-right" : "500px", "width" : "300px"})		
	}
	else
	{
	    $('.mainp_header').css({ "background" : "url(/images/mainImg/main1600.jpg) no-repeat center", "height" : "470px"})
		$('.txt1').css({"font-size" : "16px", "margin-top" : "35px", "margin-right" : "890px", "width" : "200px"})
		$('.txt2').css({"font-size" : "16px", "margin-top" : "120px", "margin-right" : "685px", "width" : "300px"})		
	}
    */
});

function MainImgResize()
{
    var width = $(window).width();
    
    var imgWidth = 1600;
    if (width < imgWidth)
        imgWidth = Math.round(1600 - (1600 - 971)*(1600 - width)/(1600 - 1024));
        //imgWidth = width-20;
    $('#mainImg').css({"width" : imgWidth + "px"});
    
    var txt1left = Math.round(550 - 270/666 * (1600 - imgWidth));
    var txt1top = Math.round(35 - 30/666 * (1600 - imgWidth));
    var txt1size = Math.round(16 - 3/666 * (1600 - imgWidth));
    
    var txt2left = Math.round(630 - 360/666 * (1600 - imgWidth));
    var txt2top = Math.round(120 - 50/666 * (1600 - imgWidth));
    var txt2size = Math.round(16 - 6/666 * (1600 - imgWidth));
    
    //$('.txt1').css({"font-size" : txt1size + "px", "margin-top" : txt1top + "px", "margin-left" : txt1left + "px", "width" : "300px"});
    //$('.txt2').css({"font-size" : txt2size + "px", "margin-top" : txt2top + "px", "margin-left" : txt2left + "px", "width" : "300px"});
}


function WomanImgResize()
{
    var width = $(window).width();
    
    // Для женской коллекции
    var imgWidth = 1600;
    if (width < imgWidth)
        imgWidth = width-20;
    $('#womanImg').css({"width" : imgWidth + "px"});
}

function ArrowsMove()
{
    var width = $(window).width();
    $('.arrows').css("margin-left", (width-850)/2);
}

