$(document).ready(function(){
   $('#tvlist_tit li').each(function(index){
		$(this).mouseover(function(){
				$('#tvlist_tit .tvlist_on').each(function(){
					$(this).removeClass('tvlist_on');
					$(this).addClass('tvlist_off');
				});
				$(this).removeClass('tvlist_off');
				$(this).addClass('tvlist_on');
				$('#tvlist_content ul').fadeOut('slow');
				$('#tv_content'+index).fadeIn('slow');
		});
   });
});
