$(document).ready(function() {
	$(".submit").click(function() { $(this).closest("form").submit(); });

	/* Покажем всех менеджеров */
	$("#managers").fancybox({
		'titleShow'	    : false,
		'overlayShow'	: true,
		'overlayOpacity' : 0.7,
		'overlayColor' : '#fff',
		'hideOnOverlayClick' : true,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});

	/* В зависимости от разрешений экрана установим нужный класс для блоков 3-х групп аудитории */

	function Change3Box(){
		var wWidth = jQuery(window).width();
		var nClass = 1910;
		var nHeight = 231;
		/*
		if ( wWidth < 1300 )     { nClass = 1260; nHeight = 142; }
		if ( wWidth < 1050 ) { nClass = 1040; nHeight = 95;  }
		if ( wWidth < 1030 ) { nClass = 1020; nHeight = 106; }
		if ( wWidth < 1000 ) { nClass = 990;  nHeight = 90;  }

		*/
		if ( wWidth < 1610 )     { nClass = 1610; nHeight = 195; }
		if ( wWidth < 1410 ) { nClass = 1410; nHeight = 171;  }
		if ( wWidth < 1270 ) { nClass = 1260; nHeight = 152; }
		if ( wWidth < 1100 ) { nClass = 1100;  nHeight = 119;  }
		if ( wWidth < 1000 ) { nClass = 1000;  nHeight = 99;  }

		$(".intro:eq(0) div").animate({height:nHeight, width: "100%"}, 500);
		$(".intro:eq(0) div").css({'backgroundImage': 'url(i/site/intro-prof-' + nClass +'.jpg)'});

		$(".intro:eq(1) div").animate({height:nHeight, width: "100%"}, 500);
		$(".intro:eq(1) div").css({'backgroundImage': 'url(i/site/intro-snab-' + nClass +'.jpg)'});

		$(".intro:eq(2) div").animate({height:nHeight, width: "100%"}, 500);
		$(".intro:eq(2) div").css({'backgroundImage': 'url(i/site/intro-montage-' + nClass +'.jpg)'});

	}

	Change3Box();
	$(window).resize(function () {
		Change3Box();
	});

	/* Покажем фото, схемы, чертежи*/
	$(".fancy").fancybox({
		'titleShow'	    : false,
		'overlayShow'	: true,
		'overlayOpacity' : 0.7,
		'overlayColor' : '#fff',
		'hideOnOverlayClick' : true,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});
	$("a.zoom").fancybox({
		'titleShow'	    : false,
		'overlayShow'	: true,
		'overlayOpacity' : 0.7,
		'overlayColor' : '#fff',
		'hideOnOverlayClick' : true,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});
	$("a[rel=photo_group]").fancybox({
		'titleShow'	    : false,
		'overlayShow'	: true,
		'overlayOpacity' : 0.7,
		'overlayColor' : '#fff',
		'hideOnOverlayClick' : true,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});
	$("a[rel=scheme_group]").fancybox({
		'titleShow'	    : false,
		'overlayShow'	: true,
		'overlayOpacity' : 0.7,
		'overlayColor' : '#fff',
		'hideOnOverlayClick' : true,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});
	$("a[rel=plot_group]").fancybox({
		'titleShow'	    : false,
		'overlayShow'	: true,
		'overlayOpacity' : 0.7,
		'overlayColor' : '#fff',
		'hideOnOverlayClick' : true,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});

});
