
               var ImgStr=new Array();
               var pic_count=0;
               var CurrentContentID=0;
               var contentIDAr=new Array();

               function getCurrentIndex(){
                  for(var i=0;i<pic_count;i++){
                     if(contentIDAr[i]==CurrentContentID){
                       // alert("get it "+i);
                        return i;
                     }
                  }
                  return -1;
               }
               function goto(direction){
                  var nowIndex=getCurrentIndex();
                  if(direction==1){//go up
                     if(nowIndex>0){
                       showPage(nowIndex - 1);
                     }                     
                  }else{
                     if(nowIndex<pic_count -1){
                       showPage(nowIndex + 1);
                     }                
                  }                 
               }	 
               function showPage(pgIndex){
                   if(pgIndex>=0 && pgIndex <pic_count){
                		 window.location.href=ImgStr[pgIndex];
                   }
                   return false;                   
               }
               function showMenuBar(){
                  var pre="<a ";                  
                  var end="</a>";
                  var str="";
                  for(var i=0;i<pic_count;i++){
                      str+=pre;
                      if(i<pic_count){
                         if(i==getCurrentIndex()){
                            str+=" class=\"color10\" > ";
                         }else{
                            str+="href=\"#\" onclick='showPage("+i+")'> ";                         
                         }
                      }else{
                        str+="!href=\"#\"> ";
                      }     
                      str+=(i+1);                 
                      str+=end;
                  }                  
                  document.write(str);
               } 	  
                
                   ImgStr[pic_count]='';
                   contentIDAr[pic_count]='20040610101795';                   
                   pic_count++;
               
                   ImgStr[pic_count]='/geography/around/20040610/101793.shtml';
                   contentIDAr[pic_count]='20040610101793';                   
                   pic_count++;
               
                   ImgStr[pic_count]='/geography/around/20040610/101791.shtml';
                   contentIDAr[pic_count]='20040610101791';                   
                   pic_count++;
               
                   ImgStr[pic_count]='/geography/around/20040610/101781.shtml';
                   contentIDAr[pic_count]='20040610101781';                   
                   pic_count++;
               
                   ImgStr[pic_count]='/geography/around/20040610/101768.shtml';
                   contentIDAr[pic_count]='20040610101768';                   
                   pic_count++;
               
                   ImgStr[pic_count]='/geography/around/20040610/101765.shtml';
                   contentIDAr[pic_count]='20040610101765';                   
                   pic_count++;
               
                   ImgStr[pic_count]='/geography/around/20040610/101763.shtml';
                   contentIDAr[pic_count]='20040610101763';                   
                   pic_count++;
               
                   ImgStr[pic_count]='/geography/around/20040610/101759.shtml';
                   contentIDAr[pic_count]='20040610101759';                   
                   pic_count++;
               
                   ImgStr[pic_count]='/geography/around/20040610/101758.shtml';
                   contentIDAr[pic_count]='20040610101758';                   
                   pic_count++;
               
                   ImgStr[pic_count]='/geography/around/20040610/101756.shtml';
                   contentIDAr[pic_count]='20040610101756';                   
                   pic_count++;
               
                   ImgStr[pic_count]='/geography/around/20040610/101720.shtml';
                   contentIDAr[pic_count]='20040610101720';                   
                   pic_count++;
               
                   ImgStr[pic_count]='/geography/around/20040610/101716.shtml';
                   contentIDAr[pic_count]='20040610101716';                   
                   pic_count++;
               	    
               // showPages('20040610101795');                  
              