$(document).ready(function() {
 // toggles the timetable on clicking the noted informations. 
  $('#timetable-toggle').click(function() {
    $('#timetable-content').toggle(400);
    $(this).toggleClass("active");
    return false;
  });
});

// IE6 への警告
  ie6Alert();

// マップアプリが起動するアラート
function mapAlert() {
  var isiPad = navigator.userAgent.match(/iPad/i) != null;
  if (isiPad == true) {
    return(confirm("マップアプリが起動します"));
  }
}

// アドレスバーを自動スクロールアップ
addEventListener("load", function()
{
    setTimeout(updateLayout, 0);
}, false);
 
var currentWidth = 0;
 
function updateLayout()
{
    if (window.innerWidth != currentWidth)
    {
        currentWidth = window.innerWidth;
 
        var orient = currentWidth == 320 ? "profile" : "landscape";
        document.body.setAttribute("orient", orient);
        setTimeout(function()
        {
            window.scrollTo(0, 1);
        }, 100);           
    }
}
 
setInterval(updateLayout, 400);
 


