$(document).ready(function(){
	_MC_SWTCH = null;
	_MC_SWTCH_TIMER = null;
	$('.Multichannel .optionview li').hover(function(){
			_MC_SWTCH = $('.Multichannel .optionview li').index(this);
			$(this).addClass('hover');
			clearTimeout(_MC_SWTCH_TIMER)
			_MC_SWTCH_TIMER = setTimeout(function() {									
					if ($('.Multichannel .optionview li:eq('+_MC_SWTCH+')').hasClass('hover')) {
						$('.Multichannel .optionview li').removeClass('active');
						$('.Multichannel .optionview li:eq('+_MC_SWTCH+')').addClass('active');
						
						$('.Multichannel .contentview > div').removeClass('active');
						$('.Multichannel .contentview > div:eq('+_MC_SWTCH+')').addClass('active');
					}
				},200)
		},function(){
			$(this).removeClass('hover');
		});
});
