$.fn.columns = function () {
	var max = 0;
	$(this).each(function () {
		max = Math.max(max, $(this).height());
	}).css('height', max + 'px');
};

$(function () {
	
	var promoContainer = $('div.promo-main');
	promoContainer.find('div.promo-nav a').click(function () {
		promoContainer.find('ul').animate({'margin-left': $(this).index() * -920}, 'fast');
		$(this).addClass('active').siblings().removeClass('active');
	});
	
	$('ul.promo-group li').columns();
	$('div.footer-news li').columns();
	
});

