// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults


/** Application page **/
function toTopOfApp() {
  window.scroll(0, 0);
}

function nextTab(mngr) {
  mngr.next();
  toTopOfApp();
}
function prevTab(mngr) {
  mngr.previous();
  toTopOfApp();
}