
		var posMovepart  = 'left';
		var posStatepart = true;
		var nodeNum;
		var brVer = '';

		function fnAutoSize(s,obj) {
			var m=50;

			if ( s >= m ) {
				obj.style.pixelHeight = s +6;
			} else {
				obj.style.pixelHeight = m;

			}
		}
		function browserSet(){
			if(navigator.userAgent.indexOf('MSIE')>0){ brVer = true; }else{ brVer = false; }
		}
		function moveSetup(){
			browserSet();

			nodeNum = document.getElementById('pathnerList').childNodes.length;
			
			for(var i=0; i<nodeNum; i++){
				if(brVer){
					document.getElementById('pathnerList').childNodes[i].style.pixelLeft = i*110;
				}else{
					document.getElementById('pathnerList').childNodes[i].style.left = i*110+"px";
				}
			}
			setInterval("movePartner()","100");
		}
		function movePartner(){

			if(posStatepart){
				if(posMovepart=='left'){
					dotNum = -10; 
					tempobj = document.getElementById('pathnerList').childNodes[1].style;
					if(brVer){
						if(tempobj.pixelLeft<=0){
							document.getElementById('pathnerList').appendChild(document.getElementById('pathnerList').childNodes[0]);
							document.getElementById('pathnerList').childNodes[8].style.pixelLeft = 8*110;
						}
					}else{
						if(parseInt(tempobj.left,10)<=0){
							document.getElementById('pathnerList').appendChild(document.getElementById('pathnerList').childNodes[0]);
							document.getElementById('pathnerList').childNodes[8].style.left = 8*110+'px';
						}

					}
				}else{
					dotNum = 10;
					if(brVer){
						if(document.getElementById('pathnerList').childNodes[nodeNum-3].style.pixelLeft>=790){
							document.getElementById('pathnerList').insertBefore(document.getElementById('pathnerList').childNodes[nodeNum-1],document.getElementById('pathnerList').childNodes[0]);
							document.getElementById('pathnerList').childNodes[0].style.pixelLeft = document.getElementById('pathnerList').childNodes[1].style.pixelLeft-110;
						}
					}else{
						if(parseInt(document.getElementById('pathnerList').childNodes[nodeNum-3].style.left,10)>=790){
							document.getElementById('pathnerList').insertBefore(document.getElementById('pathnerList').childNodes[nodeNum-1],document.getElementById('pathnerList').childNodes[0]);
							document.getElementById('pathnerList').childNodes[0].style.left = parseInt(document.getElementById('pathnerList').childNodes[1].style.left,10)-110+'px';
						}
					}
				}

				for(var i=0; i<nodeNum; i++){
					if(brVer){
						j = document.getElementById('pathnerList').childNodes[i].style.pixelLeft;
						document.getElementById('pathnerList').childNodes[i].style.pixelLeft = j+dotNum;
					}else{
						j = parseInt(document.getElementById('pathnerList').childNodes[i].style.left,10);
						document.getElementById('pathnerList').childNodes[i].style.left = j+dotNum+'px';
					}
				}
				
			}	


		}
		function mImgc(obj,bool){
			if(bool){
				obj.src = obj.src.replace('.gif','_over.gif');
			}else{
				obj.src = obj.src.replace('_over.gif','.gif');
			}
		}
		function hot_Imagebox(n){
			if(n){
				document.getElementById('ctnToplist').className ='ctnToplist';
				document.getElementById('ctnToplist2').className ='ctnToplist2';
				document.getElementById('hotImgbox1').style.display='block';
				document.getElementById('hotImgbox2').style.display='none';
			}else{
				document.getElementById('ctnToplist').className ='ctnToplist2';
				document.getElementById('ctnToplist2').className ='ctnToplist';
				document.getElementById('hotImgbox1').style.display='none';
				document.getElementById('hotImgbox2').style.display='block';
			}
		}
		function movieChg(url,cname,mtime,n){
			movieHitup(n);
			document.getElementById('movieArea').innerHTML ='<object width="640" height="385"><param name="movie" value="'+url+'"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="'+url+'" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="542" height="306" ></embed></object>';
			document.getElementById('currMoviesub1').innerHTML = cname;
			document.getElementById('currMoviesub2').innerHTML = mtime;
			
		}
