// =================================================================================
// 
// トップJS
// 
// =================================================================================
var cur_id = 1;

$(function(){
  opening();
});


function opening(){
  $('#blanding-open-img').fadeIn(1000);
  $('img.screen:last').fadeIn(1000);
  setTimeout('init()', 1000);
}


function init(){
  $('img.screen').show();
  $('#blanding-open-img').animate({opacity:'0.0'}, 1500, 'swing');

  setTimeout('fadeout()', 3000);
}


function fadeout(){
  $('#screen'+cur_id).animate({opacity:'0.0'}, 2000, 'swing');
  cur_id++;

  if(cur_id <= 5){
    setTimeout('fadeout()', 3000);
  }else{
    setTimeout('fadein()', 1500);
  }
}


function fadein(){
  $('#blanding-last-img').fadeIn(1500);
}
