$(document).ready(function() {
  $('.report-info a').click(function() {
    var cHREF = $(this).attr('href');
    var cReportType = cHREF.substring(cHREF.indexOf('?report=') + 8);

    $('#report-type').val(cReportType);

    var reportBodyHeight = $('#report-body').height();

    $('#report-form').css('top', 0 - reportBodyHeight).show().animate({ top: 0 }, 250, 'swing');

    return false;
  });

  $('#report-form-back a').click(function() {
    var reportBodyHeight = $('#report-body').height();

    $('#report-form').animate({ top: 0 - reportBodyHeight }, 250, 'swing', function() {
      $(this).hide();
    });

    return false;
  });
});
