$(function(){
	$('.promo').hide();
	$('#promo1').show();
	$('.promo_btn:first').addClass('active');
	
	setTimeout('rotate(1)', 5500);
	
	$('#carousel_btn a').click (
		function () {
			return false;
		}
	);
	$("a[rel=fancybox]").fancybox();
	$('.module').equalizeCols();

});

function rotate(index) {
	var new_el = $('#carousel_btn a').get(index);
	var old_el = $('#carousel_btn a.active');
	var href_new = $(new_el).attr('href');
	var href_old = old_el.attr('href');
	old_el.removeClass('active');
	$(href_old).fadeOut('normal', function () {
		//alert('ff');
		$(href_new).fadeIn('normal');
	});
	$(new_el).addClass('active');
	setTimeout('rotate('+(++index%3)+')', 5500);
}