// Javascript file to manipulate the steped javascript registration form 

// This file gets pulled in on the registration pages inside the /reg-alt/ directory

jQuery(document).ready(function(){

    jQuery(".next").click(function () { 
      jQuery("#one").hide("fast", function() {
        jQuery("#two").show("fast");
      });
    });

    jQuery('.nextSec').click(function () { 
      jQuery('#two').hide('fast', function() {
        jQuery('#three').show('fast');
      });
    });

    jQuery('.prev').click(function () { 
      jQuery('#two').hide('fast', function() {
        jQuery('#one').show('fast');
      });
    });

    jQuery('.prevSec').click(function () { 
      jQuery('#three').hide('fast', function() {
        jQuery('#two').show('fast');
      });
    });

  });

