
$(document).ready(function() {
	if ($('.bg-trans').length > 0) {
		$('.bg-trans').each(function() {
			var w = $(this).outerWidth();
			var h = $(this).outerHeight();
			$(this).clone().empty().css({backgroundColor: '#000', padding: '0px', zIndex: '2', width: w+'px', height: h+'px', opacity: 0.7}).prependTo($(this).parent());
		});
	}
	var timing = 500;
	if ($('#featured').length > 0) {
		var c = $('#featured').find('.ui-tabs-selected').children('a').attr('href');
		$('#featured').find(c).children('.slide-text').animate({left: '0px'}, timing, 'swing');
		$('#featured').find(c).children('.trans').animate({left: '0px'}, timing, 'swing');
		
		$('#featured > ul').tabs({fx:{opacity: "toggle"}}).tabs("rotate", 7000, true).bind( "tabsshow", function() { 
			$('#featured').find('.ui-tabs-panel').not(':hidden').children('.slide-text').animate({left: '0px'}, timing, 'swing');
			$('#featured').find('.ui-tabs-panel').not(':hidden').children('.trans').animate({left: '0px'}, timing, 'swing');
			setTimeout(zero, 7000);
		});

		
		function zero() {
			$('#featured').find('.slide-text').css('left','-354px');
			$('#featured').find('.trans').css('left','-354px');
		};
	}
});
