// JavaScript Document
//<![CDATA[

Namespace.register("Hc.widget.cookie");
Namespace.register("Hc.widget.movebox");
Namespace.register("Hc.util.setDiv");
Namespace.register("Hc.util.move");
Namespace.register("Hc.util.showDiv");

/**
 *Ӧ෽
 */
(function(){
	Hc.widget.cookie = {
		/**
		 * ޸cookie.
		 * @param {Object} name cookie.
		 * @param {Object} value cookieֵ.
		 * @param {Object} time Чʱ䵥λΪ.
		 */
		newAndModif:function(name,value,time){
			if(time!=null&&this.time!=''){
				document.cookie = name+"="+value+"; expires="+this.createTime(time)+";";
			}else{
				document.cookie = name+"="+value+"; expires=Fri, 31 Dec 2100 23:59:59 GMT;";
			}
		},
		/**
		 * cookieЧʱ.
		 * @param {Object} time
		 */
		createTime:function(time){
			var nowTime = new Date();
			time = parseInt(time)*24*60*60*1000 + parseInt(nowTime.getTime());
			var needTime = new Date(time);
			return needTime.toGMTString();
		},
		getValue:function(name){
			if(document.cookie){
				var cookieStrArr = document.cookie.split("; ");
				for(var i=0;i<cookieStrArr.length;i++){
					if(cookieStrArr[i].split("=")[0]==name){
						return cookieStrArr[i].split("=")[1];
					}
				}
			}else{
				return null;
			}
		}
	}
})();

/*
 *عDIVλõľ̬
 *@class setDiv
 */
(function(){
	var initheight,totalheight;
	Hc.util.setDiv = {
		/**
		 *ʼʾDOM
		 *@method init
		 *@param (el,con,nums,overclassname,outclassname,speed,maxheight) tabǰ׺ʾǰ׺tabtabʽ뿪tabʽٶȣʾݿ߶
		 */
		init:function(el,con,nums,overclassname,outclassname,speed,maxheight){
			var arg = new Array();
			for(i=0;i<arguments.length;i++){
				arg[i] = arguments[i];
			}
			for(j=1;j<=parseInt(arg[2]);j++){
				tagBox = $(arg[0] + j);
				hidBox = $(arg[1] + j);
				tagBox.m = j;
				hidBox.m = j;
				tagBox.onmouseover=function(){Hc.util.showDiv.slideshow(arg,this.m);};
				tagBox.onmouseout=function(){Hc.util.showDiv.slideshow(arg,this.m);};
				hidBox.onmouseover=function(){Hc.util.showDiv.slideshow(arg,this.m);};
				hidBox.onmouseout=function(){Hc.util.showDiv.slideshow(arg,this.m);};
			}
			Hc.util.showDiv.slideshow(arg,1);
		},
		/**
		 *ƶDOM
		 *@method build
		 *@param (el,className,targetName) 󣬼ƶʹõʽƶtagName
		 */
		build:function(el,className,targetName,cookiename){
			totalheight = 0;
			var mb_arr = new Array();
			var childtag = el.getElementsByTagName(targetName);
			for(i=0;i<childtag.length;i++){
				if(childtag[i].className==className){
					with(childtag[i].style){
						position = "absolute";
						top = totalheight + "px";
					}
					totalheight = totalheight + childtag[i].scrollHeight ;
					mb_arr[mb_arr.length] = childtag[i].id;
				}
			}
			el.style.height = totalheight + "px";
			Hc.util.move.init(el,mb_arr,cookiename);
		},
		/**
		 *ȡcookieƶDOM
		 *@method rebuild
		 *@param (movebox,cookieValue) cookieȡַ
		 */
		rebuild:function(movebox,cookieValue,cookiename){
			totalheight = 0;
			var mb_arr = cookieValue.split("&");
			for(var i=0;i<mb_arr.length;i++){
				$(mb_arr[i]).style.position = "absolute";
				$(mb_arr[i]).style.top = totalheight + "px";
				totalheight = totalheight + $(mb_arr[i]).scrollHeight ;
			}
			movebox.style.height = totalheight + "px";
			Hc.util.move.init(movebox,mb_arr,cookiename);
		},

		/**
		 *tabЧDOMʼ
		 *@method tabDivinit
		 *@param (nums,tab,con,curClassName,speed,oEvent) tabtabǰ׺ʾǰ׺tabǰʱʽлٶȣÿл¼
		 */
		tabDivinit:function(nums,tab,con,curClassName,speed,oEvent){
			var t = oEvent;
			var arg = new Array;
			for(i=0;i<arguments.length;i++){
				arg[i] = arguments[i];
			}
			for(var j=0;j<arg[0];j++){
				var curtab = $(arg[1] + j);
				curtab.n = j;
				switch(t){
					case 'click':
						curtab.onclick = function(){Hc.util.showDiv.show(arg,this.n);};
						break;
					default:
						curtab.onmouseover = function(){Hc.util.showDiv.show(arg,this.n);};
						break;
				}
			}
			return arg;
		}
	};
})();

/**
 *ʾ
 *@class showDiv
 */
(function(){
	var pos;
	var showpos;
	Hc.util.showDiv = {
		/**
		 *tabлƣ¼
		 *@param arg,idΪǰı
		 */
		show:function(arg,id){
			var curtab,curobj;
			curobj = this;
			var useArg = new Array;
			for(j=0;j<arg.length;j++){
				useArg[j] = arg[j];
			}
			for(var i=0;i<useArg[0];i++){
				curtab = $(useArg[1] +i);
				if(i==id){ 
					curtab.className = useArg[3];
					$(useArg[2]+i).style.display = "block";
				}else{
					curtab.className = '';
					$(useArg[2]+i).style.display = "none";
				}
			}	
		},

		/**
		 *tabԶлƣ¼Զ
		 *@param arg
		 */
		autoshow:function(arg){
			var time1,curobj,curtab,curnum,bpos;
			curnum = 1;
			curobj = this;
			bpos = 0;
			var useArg = new Array;
			for(j=0;j<arg.length;j++){
				useArg[j] = arg[j];
			}
			this.show(useArg,0);
			function ctrl(){
				time1 = setInterval(function(){
					if(curnum>=useArg[0]) curnum=0;
					bpos = curnum;
					curobj.show(useArg,curnum);
					curnum++;
				},useArg[4])
			}
			ctrl();
			for(var i=0;i<useArg[0];i++){
				curtab = $(useArg[1] +i);
				switch(useArg[5]){
					case 'click':
						curtab.onclick = function(){curobj.show(useArg,this.n);};
						curtab.onmouseover = function(){clearInterval(time1);bpos=this.n;}
						break;
					default:
						curtab.onmouseover = function(){clearInterval(time1);curobj.show(useArg,this.n);bpos=this.n;};
						break;
				}
				$(useArg[2] +i).onmouseover = function(){clearInterval(time1);bpos++;}
				$(useArg[2] +i).onmouseout = function(){
//					bpos++;
//					if(bpos==useArg[0]) bpos=0;
//					curobj.show(useArg,bpos);
					curnum = bpos;
					ctrl();
				}
				curtab.onmouseout = function(){
//					if(bpos==useArg[0]) bpos=0;
//					curobj.show(useArg,bpos);
					curnum = bpos;
					ctrl();
				}
			}
		},
		/**
		 *onmouseoveronmouseout¼ʾ
		 *@param arg࣬idtabĺ׺
		 */
		slideshow:function(arg,id){
			var curobj = new Array();
			for(j=0;j<arg.length;j++){
				curobj[j] = arg[j];
			}
			var tagBox,hidBox;
			var ctrl = 0;
			if((id!=pos)||(pos==null)){
				for(i=1;i<=parseInt(curobj[2]);i++){
					tagBox = $(curobj[0] + i);
					hidBox = $(curobj[1] + i);
					if(i==id){
						pos=id;
						tagBox.className = curobj[3];
						hidBox.style.display = "block";
						hidBox.style.overflow = "hidden";
						hidBox.style.height = "0px";
						var time1 = setInterval(function(){
							var ids = id;
							ctrl +=	curobj[5];
							$(curobj[1] + ids).style.height = ctrl  + "px";
							if(ctrl>curobj[6]) {clearInterval(time1);$(curobj[1] + ids).style.height = curobj[6] + "px";}
						},20);
					}else{
						tagBox.className = curobj[4];
						hidBox.style.display = "none";
						hidBox.style.height = "0px";
					}
				}
			}
		}
		
	}
})();

/**
 *ƶ
 *@class move
 */
(function(){
	var movebox = null;
	var moveboxs = new Array();
	var oStart,oEnd,oStartY,oEndY;
	var speed = 10;
	Hc.util.move = {
		/**
		 *movebox
		 *@param id ƶĸ
		 *@param ƶid
		 */
		init:function(id,mb_arr,cookiename){
			
			var movebox = new Hc.widget.movebox(id);
			for(var i=0;i<mb_arr.length;i++){
				movebox.list.push($(mb_arr[i]));
			}
			movebox.cookieid = cookiename;
			moveboxs.push(movebox);
		},

		/**
		 * ƶǰеλãλ.
		 * @method moveUp 
		 * @param {Object} m_b moveboxDOM.
		 * @param {Object} now ǰ׼ƶDOM,m_b.
		 */
		moveUp:function(m_b,now){
			oStart=null;
			oEnd=null;
			oStartY=null;
			oEndY=null;
			var changepoint = new Array();
			movebox = this.isHave(m_b);
			if(this.getUp(now)!=null){
				changepoint = this.getUp(now);
				oStart = changepoint[0];
				oEnd = changepoint[1];
				oStartY = parseInt(oEnd.style.top);
				oEndY = parseInt(oStart.style.top);
				oStart.style.zIndex = "0";
				oEnd.style.zIndex = "360";
				oStart.style.filter="alpha(opacity=10)";
				this.startmoving();
				this.endmoving();
				oStart.style.filter="alpha(opacity=100)";
			}
			this.change(oEnd,oStart);
			Hc.widget.cookie.newAndModif(movebox.cookieid,this.toString(),30);
			
		},
		/**
		 *ƶǰеλãλ.
		 *@method moveDown 
		 */
		moveDown:function(m_b,now){
			oStart=null;
			oEnd=null;
			oStartY=null;
			oEndY=null;
			var changepoint = new Array();
			movebox = this.isHave(m_b);
			if(this.getDown(now)!=null){
				changepoint = this.getDown(now);
				oStart = changepoint[0];
				oEnd = changepoint[1];
				oStartY = parseInt(oEnd.style.top);
				oEndY = parseInt(oStart.style.top);
				oStart.style.zIndex = "360";
				oEnd.style.zIndex = "0";
				oEnd.style.filter="alpha(opacity=10)";
				this.startmoving();
				this.endmoving();
				oEnd.style.filter="alpha(opacity=100)";
			}
			this.change(oEnd,oStart);
			Hc.widget.cookie.newAndModif(movebox.cookieid,this.toString(),30);
			
		},
		/**
		 *һƶλ
		 */
		startmoving:function(){
			var con = this;
			yStart = parseInt(oStart.style.top);
			yEnd = oStartY+(oEnd.scrollHeight-oStart.scrollHeight);
			if(yStart<yEnd){
				this.moveY(oStart,1,speed,yEnd);
				setTimeout(function(){con.startmoving()},1);
			}
			if(yStart>yEnd){
				this.moveY(oStart,2,speed,yEnd);
				setTimeout(function(){con.startmoving()},1);
			}
			if(yStart==yEnd){

			}
		},
		/**
		 *һƶλ
		 */
		endmoving:function(){
			yStart = parseInt(oEnd.style.top);
			yEnd = parseInt(oEndY);
			var con = this;
			if(yStart<yEnd){
				this.moveY(oEnd,1,speed,yEnd);
				setTimeout(function(){con.endmoving()},1);
			}
			if(yStart>yEnd){
				this.moveY(oEnd,2,speed,yEnd);
				setTimeout(function(){con.endmoving()},1);
			}
			if(yStart==yEnd){}
		},
		/**
		 *objtopֵ
		 *@method moveY
		 */
		moveY:function(obj,ySpeenType,speed,yEnd){
			if(ySpeenType==1){
				if((parseInt(obj.style.top)+speed)>yEnd){
					obj.style.top = yEnd+"px";
				}else{
					obj.style.top = parseInt(obj.style.top)+speed+"px";
				}
			}
			if(ySpeenType==2){
				if((parseInt(obj.style.top)-speed)<yEnd){
					obj.style.top = yEnd+"px";
				}else{
					obj.style.top = parseInt(obj.style.top)-speed+"px";
				}
			}
		},
		/**
		 *ȡƶmoveboxlistеλ
		 *@method getIndex 
		 *@param ƶ
		 */
		getIndex:function(moveObj){
			for(var i=0;i<movebox.list.length;i++){
				if(movebox.list[i]==moveObj){
					return i;
				}
			}
			return -1;
		},
		/**
		 *ȡmoveboxsmovebox
		 *@param m_bƶĸ
		 */
		isHave:function(m_b){
			for(var i=0;i<moveboxs.length;i++){
				if(moveboxs[i].name==$(m_b.id)){
					return moveboxs[i];
				}
			}
		},
		/**
		 * ϻȡǰٽĶ.
		 * @method getUp 
		 * @param {Object} now ǰ.
		 */
		getUp:function(now){
			var arrm = new Array();
			for(var i=0;i<movebox.list.length;i++){
				if(movebox.list[i]==now){
					if(i>0){
						arrm[0] = movebox.list[i-1];
						arrm[1] = movebox.list[i];
						return arrm;
					}else{
						return null;
					}
				}
			}
		},
		/**
		 * »ȡǰٽĶ.
		 * @method getDown 
		 * @param {Object} now ǰ.
		 */
		getDown:function(now){
			var arrm = new Array();
			for(var i=0;i<movebox.list.length;i++){
				if(movebox.list[i]==now){
					if(i<movebox.list.length-1){
						arrm[0] = movebox.list[i];
						arrm[1] = movebox.list[i+1];
						return arrm;
					}else{
						return null;
					}
				}
			}
		},
		/**
		 *ıƶmovebox.listеλ
		 *@method change
		 *@param (start,end)ƶ
		 */
		change:function(start,end){
			var s_index = this.getIndex(start);
			var e_index = this.getIndex(end);
			if(s_index!=-1&&e_index!=-1){
				movebox.list[s_index] = end;
				movebox.list[e_index] = start;
				movebox.version++;
			}
		},
		/**
		 *moveboxеlistֵ&ӷַ
		 *@method toString
		 */
		toString:function(){
			var tempStr = "";
			for(var i=0;i<movebox.list.length;i++){
				tempStr = tempStr + movebox.list[i].id + "&";
			}
			tempStr = tempStr.substring(0,tempStr.length-1);
			return tempStr;
		}
	};
})();




/**
 * ƶ.
 * @class movebox
 * @param {Object} name moveboxID.
 */
Hc.widget.movebox = function(name){
	this.name = name;
	this.list = new Array();
	this.size = 0;
	this.version = 0;
	this.obj = null;
	this.cookieid = null;
}
//]]>

