

// 竜族の暮らし　専用スクリプト -----------------------------------------------------------
Num1=0;

function next1(){
  Num1++;
  if(Num1 >= MaxPage1) Num1 = MaxPage1;
  outputLAYER('btn_comment','現在'+MaxPage1+'ページ中の<br>'+Num1+'ページを見てるよ！');
  routine1();
}

function prev1(){
  Num1--;
  if(Num1 < 1) Num1 = 1;
  outputLAYER('btn_comment','現在'+MaxPage1+'ページ中の<br>'+Num1+'ページを見てるよ！'); 
  routine1();
}

function routine1(){
  document.gazou1.src="manga1/manga_Reg"+Num1+".gif";
  FadeInstr();
}




// 日常四コマ　専用スクリプト -----------------------------------------------------------
Num2=0;

function next2(){
  Num2++;
  if(Num2 >= MaxPage2) Num2 = MaxPage2;
  outputLAYER('btn_comment','現在'+MaxPage2+'ページ中の<br>'+Num2+'ページを見てるよ！');
  routine2();
}

function prev2(){
  Num2--;
  if(Num2 < 1) Num2 = 1;
  outputLAYER('btn_comment','現在'+MaxPage2+'ページ中の<br>'+Num2+'ページを見てるよ！'); 
  routine2();
}

function routine2(){
  document.gazou1.src="manga2/m"+Num2+".jpg";
  FadeInstr();
}
