	var sliding_flag = 0;
	var sliding_time = 0;	
	var RowCount = 5

	//ÀÚµ¿³Ñ±è ¼³Á¤ 0 : Á¤Áö , 1: ÃµÃµÈ÷ , 2: ºü¸£°Ô
	function sliding_Set(getflag){
		sliding_flag = getflag;

		if(getflag == 1){
			sliding_time = 4000; //ÃµÃµÈ÷
		}else{
			sliding_time = 2000; //ºü¸£°Ô
		}

		startSliding();
	}

	//½ÇÁ¦ Sliding ÇØÁÖ´Â Function
	function startSliding(){

		if(sliding_flag > 0){
			nowImgIdx++;
			
			if(nowImgIdx > imgMaxCount){
				nowImgIdx = 0;
			}
			imgSetting();
			window.setTimeout("startSliding()", sliding_time);
		}
	}

	//Å«ÀÌ¹ÌÁö ´ÙÀ½
	function Next(){

		SlidingStop();

		nowImgIdx++;
		
		if(nowImgIdx > imgMaxCount){
			nowImgIdx = 0;
		}

		imgSetting();
	}

	//Å«ÀÌ¹ÌÁö ÀÌÀü
	function Prev(){

		SlidingStop();

		nowImgIdx--;
		
		if(nowImgIdx < 0){
			nowImgIdx = imgMaxCount;
		}

		imgSetting();
	}

	//ÇÏ´Ü ½æ³×ÀÏ Å¬¸¯ÇßÀ»¶§
	function ClickImg(idx){

		SlidingStop();

		nowImgIdx = (NowRowIdx*RowCount)+idx;

		if(nowImgIdx > imgMaxCount || imgMaxCount < 0){
			nowImgIdx = imgMaxCount;
		}else{
			imgSetting();
		}
	}

	//¿øº»ÀÌ¹ÌÁö ¼ÂÆÃ
	var OutTableIdx,TableObj,frameParam;
	function imgSetting(){

		ChangeRowIdx = Math.floor(nowImgIdx/RowCount);
		ThumbSetting();
		//document.getElementById("OrgImg").width=ImgWidth[nowImgIdx];
		//document.getElementById("OrgImg").height=ImgHeight[nowImgIdx];
		//document.getElementById("OrgImg").src = OrgImgName[nowImgIdx];		

		if(isFlag == "gallery"){
			frameParam = "http://www.joseilbo.com/news/img_news/img.php?newsid="+NewsId[nowImgIdx]+"&imgname="+OrgImgName[nowImgIdx]+"&w="+ImgWidth[nowImgIdx]+"&h="+ImgHeight[nowImgIdx];
		}else if(isFlag == "album"){
			frameParam = "http://www.joseilbo.com/news/img_news/img.php?num="+SubNum[nowImgIdx]+"&imgname="+OrgImgName[nowImgIdx]+"&w="+ImgWidth[nowImgIdx]+"&h="+ImgHeight[nowImgIdx]+"&group_id="+groupid;
		}else if(isFlag =="sports"){
			frameParam = "http://www.joseilbo.com/news/img_news/img.php?newsid="+NewsId[nowImgIdx]+"&imgname="+OrgImgName[nowImgIdx]+"&w="+ImgWidth[nowImgIdx]+"&h="+ImgHeight[nowImgIdx];
		}else{
			frameParam = "http://www.joseilbo.com/news/img_news/img.php?newsid="+NewsId[nowImgIdx]+"&imgname="+OrgImgName[nowImgIdx]+"&w="+ImgWidth[nowImgIdx]+"&h="+ImgHeight[nowImgIdx];
		}


		document.getElementById("OrgImg").src = frameParam;

		if(isFlag == "gallery" || isFlag =="sports"){
			document.getElementById("imgTitle").innerText = Title[nowImgIdx];
			document.getElementById("imgContent").innerText = Content[nowImgIdx];
		}

		if(isFlag =="sports"){
			document.getElementById("topTitle").innerText = Title[nowImgIdx];
		}

		OutTableIdx = nowImgIdx%RowCount;

		for(i=0;i<5;i++){
			TableObj = document.getElementById("SmallImgOutTable_"+i);

			if(OutTableIdx == i){
				TableObj.bgColor="#FFCC00";
			}else{
				TableObj.bgColor="#5B5A5A";
			}
		}
	}

	//ÇÏ´Ü ¸®½ºÆ® ½æ³×ÀÏ ¼ÂÆÃ
	var StartIdx,EndIdx,ThumbObj,ObjIdx;
	function ThumbSetting(){				

		if(NowRowIdx != ChangeRowIdx){
			
			for(i=0;i<RowCount;i++){
				TableObj = document.getElementById("SmallImgOutTable_"+i);
				TableObj.bgColor="#5B5A5A";
			}

			NowRowIdx = ChangeRowIdx;
			StartIdx = NowRowIdx*RowCount;
			EndIdx = StartIdx+RowCount;
			ObjIdx = 0;

			for(j=StartIdx;j<EndIdx;j++){
				ThumbObj = document.getElementById("SmallImgTable_"+ObjIdx);
				if(j<=imgMaxCount){
					ThumbObj.background = SmallImgName[j];
				}else{
					ThumbObj.background = "";
				}

				ObjIdx++;
			}
			
		}
	}

	//ÇÏ´Ü ¸®½ºÆ® ´ÙÀ½
	function ListNext(){

		SlidingStop();

		ChangeRowIdx = NowRowIdx+1;

		if(ChangeRowIdx > MaxLow){
			ChangeRowIdx = 0;
		}

		ThumbSetting();
	}

	//ÇÏ´Ü ¸®½ºÆ® ÀÌÀü
	function ListPrev(){
		
		SlidingStop();

		ChangeRowIdx = NowRowIdx-1;

		if(ChangeRowIdx < 0){
			ChangeRowIdx = MaxLow;
		}

		ThumbSetting();
	}


	//½ºÅ¸È­º¸ ¿øº»ÀÌ¹ÌÁö º¸±â
	function goAlbumPopup(){
		var windowHeight=screen.height-80;
		var nownum = SubNum[nowImgIdx];
		window.open("http://spn.edaily.co.kr/plus/starAlbumPopup.asp?group_id="+groupid+"&num="+nownum,"starAlbum","width=870,height="+windowHeight+",toolbar=no,menubar=no,scrollbars=yes"); 
	}

	//½ºÅ¸°¶·¯¸® ¿øº»ÀÌ¹ÌÁö º¸±â
	function goGalleryPopup(imgn){
		var windowHeight=screen.height-80;
		var nowseq = HotSeq[nowImgIdx];
		window.open("http://www.joseilbo.com/news/img_news/img.php?imgname="+imgn,"stargallery","toolbar=no,menubar=no,scrollbars=yes"); 
	}

	//½ºÆ÷Ã÷Æ÷Åä ¿øº»ÀÌ¹ÌÁöº¸±â
	function goSportsPopup(){
		var windowHeight=screen.height-80;
		var nowseq = HotSeq[nowImgIdx];
		window.open("http://spn.edaily.co.kr/plus/sportsPhotoNewPopup.asp?hot_cd="+hot_cd+"&hot_seq="+nowseq,"sportsPhoto","width=780,height="+windowHeight+",toolbar=no,menubar=no,scrollbars=yes"); 
	}


	//ÀÚµ¿³Ñ±è ÁßÁö
	function SlidingStop(){
		sliding_flag = 0;
		document.rform.sliding[0].checked = true;
	}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
