var keep,xval;

//URL to link

//var lnk=new Array('#1','building/02/','#3','#4', '#5', '#6');

//img path

var img=new 

Array('images/fukidashi_txt_01.gif',
	  'images/fukidashi_txt_02.gif',
	  'images/fukidashi_txt_01.gif',
	  'images/fukidashi_txt_03.gif');

//alt

var alt=new Array(
				  'NEWS',
				  '',
				  'NEWS',
				  ''
				  );

var maxlink=img.length;

function InitCookie(){

//read Cookie

  val=new Array();

  val= document.cookie.split("; ");

  valbase="sumitomolatourtopimg="; // Cookie's variable name

  len=valbase.length;

  keep=0;

  for(i=0;val[i];i++){

    if (val[i].substr(0,len) == valbase){

      keep = 1 * val[i].substr(len,val[i].length);

      break;

    }

  }

//modiry the read value

  if(!keep)keep=0;

  xval=keep;

  keep=(keep+1)%maxlink;

//write a Cookie

  exp=new Date();

//Cookie is available for a week

  exp.setTime(exp.getTime()+24*3600*1000*7);

  document.cookie = valbase + keep + "; expires=" + exp.toGMTString();

}
