$(document).ready(function(){
	$('.people-list li:last').addClass('last');
	if ($('body').hasClass('index-page')) {
		$('.scada img').attr('src', 'images/index-scada.gif');
		if ($(document).height() > $('body').height()) {
			$height = $(window).height() - 471;
			$('.head').css({height: $height});
		}
	}
	
	$('.promo-block .prev').hover(function(){
		$width = $(document).width() * 0.1;
		
		$('.promo-block ul').animate({left: 0}, 5000,"swing");
	}, function() {
		$('.promo-block ul').stop(true);
	});
	$('.promo-block .next').hover(function(){
		$width = ($('.promo-block li').size() * 545 - 45) - ($(document).width() * 0.8);
		// 871
		$('.promo-block ul').animate({left: -$width}, 5000,"swing"); 
	}, function() {
		$('.promo-block ul').stop(true);
	});
});

$(window).scroll(function(){
	if ($('body').hasClass('index-page')) {
		$('.scada img').attr('src', 'images/index-scada.gif');
		if ($(document).height() > $('body').height()) {
			$height = $(window).height() - 471;
			$('.head').css({height: $height});
		}
	}
});
