﻿$(function(){
		   
//首页banner 调用插件jq-slide.js
$("#banner").Slide({
effect : "fade",
speed : "normal",
timer : 5000
});


$(".banner-box dl dd").hover(
		function(){
			$(this).children("span").slideToggle(100);
		},function(){
			$(this).children("span").slideUp(100)
		})


//首页video 调用插件jq-slide.js
$("#index-video").Slide({
effect : "scroolX",
autoPlay:true,
speed : "normal",
timer : 5000,
steps:1
});

});
