jQuery(document).ready(function(){
  jQuery('#top_nav ul li').hover(function() {
    jQuery(this).find('.sub_nav').css('top','50px').fadeIn('slow');
  }, function() {
    jQuery(this).find('.sub_nav').css('top','-500px').fadeOut('slow', function() {
      jQuery(this).find('.sub_nav').css('top','-500px');
    });
  });
  jQuery('#content_background').not('.home').css('height', jQuery('#left_column').height() + 30);
  jQuery('.enroll_payment_toggle').click(function() {
    jQuery('#enroll_cc_fields').hide(function() {
      jQuery('#content_background').not('.home').css('height', jQuery('#left_column').height() + 30);
    });
    if(jQuery('.enroll_cc').is(':checked'))  {
      jQuery('#enroll_cc_fields').show(function() {
        jQuery('#content_background').not('.home').css('height', jQuery('#left_column').height() + 30);
      });
    }
  });
  jQuery('.enroll_other_toggle').click(function() {
    jQuery('.enroll_other_field').hide(function() {
      jQuery('#content_background').not('.home').css('height', jQuery('#left_column').height() + 30);
    });
    if(jQuery(this).is(':checked'))  {
      jQuery('.enroll_other_field').show(function() {
        jQuery('#content_background').not('.home').css('height', jQuery('#left_column').height() + 30);
      });
    }
  });
  
});
