$(function(){
	// 首页图片切换
	var thisTab = 0;
	var imgLength = $('#navImg li').length;
	$('#banner_bg').css({opacity:'0.5'});
	$('#navImg li').css({opacity:'0.5'});
	$('#bigImg li').css({display:'none'})
	$('#bigImg li').eq(thisTab).css({display:'block'})
	$('#navImg li').eq(thisTab).css({opacity:'1'});
	
	function fubTab(){
		$('#bigImg li').stop().fadeOut();
		$('#bigImg li').eq(thisTab).stop().fadeIn();
		$('#navImg li').eq(thisTab).css({opacity:'1'}).siblings('li').css({opacity:'0.5'});
	}
	
	$('#navImg li').click(function(){
		thisTab = $(this).index();
		fubTab();
	})
	
	$('#banner_tab').everyTime('3s','bannerTab',nextImg);
	$('#banner_tab').hover(function(){
		$('#banner_tab').stopTime('bannerTab');
	},function(){
		$('#banner_tab').everyTime('3s','bannerTab',nextImg);
	})
	
	function nextImg(){
		thisTab = thisTab < imgLength-1 ? thisTab+=1:0;
		fubTab();
	}
	
	// 首页产品展示
	$('.show1 .show_tit').css({bottom:'-242px'});
	$('.show2 .show_tit').css({bottom:'-83px'});
	$('.show3 .show_tit').css({top:'-197px'});
	$('.show4 .show_tit').css({bottom:'-253px'});
	$('.show5 .show_tit').css({top:'-79px'});
	$('.show6 .show_tit').css({top:'-300px'});
	
	$('.show1').hover(function(){
		$('.show1 .show_tit').animate({bottom:'0'});
	},function(){
		$('.show1 .show_tit').animate({bottom:'-242px'});
	})
	$('.show2').hover(function(){
		$('.show2 .show_tit').animate({bottom:'0'});
	},function(){
		$('.show2 .show_tit').animate({bottom:'-83px'});
	})
	$('.show3').hover(function(){
		$('.show3 .show_tit').animate({top:'0'});
	},function(){
		$('.show3 .show_tit').animate({top:'-197px'});
	})
	$('.show4').hover(function(){
		$('.show4 .show_tit').animate({bottom:'0'});
	},function(){
		$('.show4 .show_tit').animate({bottom:'-253px'});
	})
	$('.show5').hover(function(){
		$('.show5 .show_tit').animate({top:'0'});
	},function(){
		$('.show5 .show_tit').animate({top:'-79px'});
	})
	$('.show6').hover(function(){
		$('.show6 .show_tit').animate({top:'0'});
	},function(){
		$('.show6 .show_tit').animate({top:'-300px'});
	})
})


