// used to toggle options on the YNAB+ forum upgrade page

var $ = jQuery;

// wait for the DOM to be loaded
$(document).ready(function() {
  $('#initiate-toggle').click(function(){
     $('#register-new').show("blind");
     $('#upgrade-old').hide("blind"); 
  });
  $('#initiate-toggle2').click(function(){
     $('#register-new').hide("blind");
     $('#upgrade-old').show("blind"); 
  });
});
