$(document).ready(function(){
  $('#step2').hide();
  $('#step3').hide();
  
  // make the linksteps show the next guy upon click
  $('#linkstep1').click(function(){
    // first, validate that they've filled in the age box
    
     // if ($('#step1_age').val() > ''){
       // hide all of the boxes
       $('#step1').hide();
       $('#step2').show(); 
     // } else {
       // return false;     
     // }    
  });

  $('#linkstep2').click(function(){
    $('#step2').hide();
    $('#step3').show();
  });  
});