// JavaScript Document
$(function(){
/*
$(window).scroll(function(e){
   var toTop = $(document).scrollTop();
   if(toTop > 60){
	 $('.navbg').addClass('fxd');
   }else{
     $('.navbg').removeClass('fxd');
	}
});
*/

$(".ser-submit").click(function () {
	  var senr = $("input.field").val();
	  if (senr == "" || senr == "请输入搜索内容") {
		  alert("请输入搜索内容!");
		  return false;
	  }
});

//表单提交不跳转
$("form.fm-form").attr("action",'');


//单选
$(".fm-form ul li#fm-item-custom_list-5a52e3b6e6e19 label.danyuan:first input").attr('checked',true);
$(".fm-form ul li#fm-item-custom_list-5a52e3b6e6e19 label.danyuan").each(function(){
	
	$(this).click(function(){
		$(this).siblings("label.danyuan").find("input").attr('checked',false);
		$(this).find('input').attr('checked',true);
		return false;
	});
	
})


$(".fm-form ul li#fm-item-custom_list-5ee0fab6a7d3f label.danyuan:first input").attr('checked',true);
$(".fm-form ul li#fm-item-custom_list-5ee0fab6a7d3f label.danyuan").each(function(){
	
	$(this).click(function(){
		$(this).siblings("label.danyuan").find("input").attr('checked',false);
		$(this).find('input').attr('checked',true);
		return false;
	});
	
})


//复选框
//$(".fm-checkbox-list label:first input").attr('checked',true);
//$(".fm-form ul li#fm-item-custom_list-5ee0fb14e4408 .fm-checkbox-list label:first input").attr('checked',true);
$('.fm-checkbox-list label.danyuan').each(function(){
		$(this).click(function(){
		
		if( $(this).find("input").attr("checked") ){
			$(this).find("input").attr("checked", false);
		}else{
			$(this).find("input").attr("checked", true);
		}
		$(this).find("span").toggleClass('current');
		return false;
	});

});


//边栏收缩
$(".sidebarnav li a.sdjss").click(function(){
	$(this).parent().find("ul").slideToggle("fast");		
	$(this).toggleClass("active");	
});

$(".sidebarwenda li h3").click(function(){
	$(this).parent().find("p").slideToggle("fast");
	$(this).parent().toggleClass("active");	
});

//tab-con切换
$('.sideTab').each(function(){
	var that=$(this);
	that.find('.tab-hd>span>i').click(function(){
		var iIndex=$(this).index();
		$(this).addClass('active').siblings().removeClass('active');
		that.find('.tab-con .item').eq(iIndex).addClass('active').siblings().removeClass('active');
	});	
});

//弹出订单
$(".pd_btn_apply").click(function(){
	  $("#form-pop").show(200);
	  $("#greybackground").show();
  });
$("#pop_fclose").click(function(){
	  $("#form-pop").hide();
	  $("#greybackground").hide();
  });

//返回顶部
$("li.dgg-gotop-show").click(function(){$('html, body').animate({scrollTop:0},300);});



})









