//中间顶部图片轮换
$('#slides').slides({
	preload: true,
	preloadImage: 'http://pic.static.sdo.com/m2/m2/web1/guide/images/loading.gif',
	play: 3500,
	pause: 2500,
	hoverPause: true
});

//下载展开状态。0：收起；1：展开；
var DownLoadStatus=1;
function DownLoadShow()
{
	 if(DownLoadStatus==0)
	 {	 
		 $("#divDownLoad").slideDown("slow");
		 DownLoadStatus=1;
		  $("#imgbtnDownLoad").css({background:"url(http://static.sdg-china.com/m2/pic/index/images/bg_down_http_h62_7.jpg) no-repeat"});		 
	  }
	  else
	  {
		  $("#divDownLoad").slideUp("slow");	
		  DownLoadStatus=0;
		  $("#imgbtnDownLoad").css({background:"url(http://static.sdg-china.com/m2/pic/index/images/bg_down_http_h61_7.jpg) no-repeat"});
	  }	
}

//其他下载切换状态。0：校验下载文件；1：校验机器配置；
function TabOthers(TabOthersStatus)
	{		
		if(TabOthersStatus==1)
			{
				$("#check01").css("display","none");
				$("#check02").slideDown("slow");
				$("#ddChkDownLoad a").removeClass("current");
				$("#ddChkConfig a").addClass("current");
			}else{
				$("#check02").css("display","none");
				$("#check01").slideDown("slow");
				$("#ddChkDownLoad a").addClass("current");
				$("#ddChkConfig a").removeClass("current");
			 }
	}
