///*首页销量排行前五 JS效果增加*/
$(function(){
		var sIndex =1
		$(".goodsmore").click(function(){
			$('.section').eq(sIndex).fadeIn('slow')
			sIndex++
		})
		$(".bestg_frm_new").children("li").each(function(i){
			len=i
			this.value=i
		})
		$(".bestg_frm_new").children("li").click(function(){
			index=this.value;
			begMove(index)
		})


	function begMove(index){
	$(".bestg_frm_new").find('li:first-child').find('.goodsshow_box').show().find('.gds_info').show()
	$(".bestg_frm_new").children('li').eq(index).siblings().find('.goodsshow_box').slideUp().find('.gds_info').slideUp()
	$(".bestg_frm_new").children('li').eq(index).find('.goodsshow_box').slideDown().find('.gds_info').slideDown()
		}

	
		
		$(".bestg_frm_new").children('li').eq(0).trigger('click')
	
	})