function id2Cookie(){
				this.COOKIE_ID='myId';
				this.COOKIE_Title='myTitle';
				this.idArray=[];
				this.idArrayTitle=[];
				
				//CookieSet
				this.id2Cookie_Set=function(){
					$.cookie(this.COOKIE_ID, this.idArray.join("/"), { path: '/', expires: 10 });
					$.cookie(this.COOKIE_Title, this.idArrayTitle.join("/"), { path: '/', expires: 10 });
				}
				//CookieGet
				this.id2Cookie_Get=function(){
					if ($.cookie(this.COOKIE_ID)) {
						this.idArray=$.cookie(this.COOKIE_ID).split("/");
						this.idArrayTitle=$.cookie(this.COOKIE_Title).split("/");
						return true;
					}else{
						$.cookie(this.COOKIE_ID, "", { path: '/', expires: 10 });
						$.cookie(this.COOKIE_Title, "", { path: '/', expires: 10 });
						return false;
					}
					
				}
				//DeleteAllCookie
				this.id2Cookie_Delete=function(){
					this.idArray=[];
					this.idArrayTitle=[];
					$.cookie(this.COOKIE_ID, null, { path: '/' });
					$.cookie(this.COOKIE_Title, null, { path: '/' });
				}
				
				//AddtoArray
				this.id2Cookie_addToArray=function(val,tit){
					if(this.id2Cookie_Search(val,this.idArray)<0){
						this.idArray.push(val);
						this.idArrayTitle.push(tit);
						this.id2Cookie_Set();
					}
					return true;
				}
				
				//DeleteFromArray
				this.id2Cookie_delFromArray=function(val){
					//var n=jQuery.inArray(val,this.idArray);//coookieロード後が不作動
					var n=this.id2Cookie_Search(val,this.idArray);
					if(this.id2Cookie_Search(val,this.idArray)>=0){
						
						this.idArray.splice(n,1);
						this.idArrayTitle.splice(n,1);
						this.id2Cookie_Set();
					}
					return true;
				}
				
				//idSearch
				this.id2Cookie_Search=function(val,ary){
					for(var i=0;i<ary.length;i++){
						if(val==ary[i]){
							return i;
							break;
						}
					}
					return -1;
				}
								
				//CookieCheck
				this.id2Cookie_Check=function(){
					alert($.cookie(this.COOKIE_ID)+"\n"+$.cookie(this.COOKIE_Title));
				}
				//CookieCheck
				this.id2Cookie_CheckArray=function(){
					alert(this.idArray.join('/')+"\n"+this.idArrayTitle.join('/'));
				}
				
			}