jQuery(document).ready(function() {
	jQuery(function() {
		$("#promo").tabs({ 
			fx: { opacity: 'toggle', duration: 'fast' } 
		}).bind('tabsselect', function (event, ui) { 
			jQuery('#promo-nav li.ui-before-active').removeClass ('ui-before-active');
			if (ui.index > 0) {
				jQuery("#promo-nav li:nth-child(" + ui.index + ")").addClass('ui-before-active');
			}
		});
		
		$(".ui-tabs-nav li:last-child").addClass("ui-last-child");
		$(".ui-tabs-nav li:first-child").addClass("ui-first-child");
	});
});
