因为两段js代码,报错如图所示

js代码如下:
<script type="text/javascript">
TouchSlide({
slideCell: "#focus",
titCell: ".hd ul", //开启自动分页 autoPage:true ,此时设置 titCell 为导航元素包裹层
mainCell: ".bd ul",
effect: "leftLoop",
autoPlay: true, //自动播放
autoPage: true, //自动分页
delayTime:500,
interTime:3500
});
</script>
<script>
$('.news_tab li').mouseover(function (){$(this).addClass("on").siblings().removeClass("on");$(".news").eq($('.news_tab li').index(this)).show().siblings(".news").hide();});
$(".nav h2").click(function(){
$(".nav_sub").slideToggle("slow");
});
$(".share_btn").click(function(){
$(".share").slideToggle("slow");
});
$(".bds_more").click(function(){
$(".bdshare_popup_box").css("display","none");
});
})
</script>
{code} $('.news_tab li').mouseover(function (){$(this).addClass("on").siblings().removeClass("on");$(".news").eq($('.news_tab li').index(this)).show().siblings(".news").hide();}); {/code}