jQuery(function($){
	$('.homeAdSwitch .switching').each(function(){
		$(this).switching(3000,500);
	});
	
	$('.channel .switching').each(function(){
		$(this).switching(3000,500, true);
	});
	
	$('.homeAdSwitch .switching').not('.homeAdSwitch .switching:first').data('stop', true);
	
	$('.homeAdSwitch .tab a').each(function(index){
		$(this).click(function(){
			var $showItemFilter = '.homeAdSwitch .switching' + (index + 1);
			$('.homeAdSwitch .switching').not($showItemFilter).hide().data('stop', true);
			$($showItemFilter).show().data('stop', false);
			var width = $('.homeAdSwitch .switchingGroup').height();
			$('.homeAdSwitch .switchingGroup').css('backgroundPosition', '0px ' + (width -1 * (index + 1) * $('.homeAdSwitch .tab').height()) + 'px');
		});
	});
});
