/* Author: Cloudtippers.com */

  $('#yourUpSurvey').submit(function(event) {
    event.preventDefault();
    v1 = $('input[name=websiteQuestion1]:checked').val();
    v2 = $('input[name=websiteQuestion1a]:checked').val();
    v3 = $('input[name=websiteQuestion1b]:checked').val();
    v4 = $('input[name=websiteQuestion1c]:checked').val();
    v5 = $('input[name=websiteQuestion1d]:checked').val();
    v6 = $('input[name=webappQuestion2]:checked').val();
    v7 = $('input[name=webappQuestion3]:checked').val();
    v8 = $('input[name=webappQuestion4]:checked').val();
    v9 = $('input[name=webappQuestion5]:checked').val();
    v10 = $('input[name=communityQuestion6]:checked').val();
    v11 = $('input[name=communityQuestion7]:checked').val();
    v12 = $('input[name=communityQuestion8]:checked').val();
    v13 = $('input[name=communityQuestion8a]:checked').val();
    v14 = $('input[name=communityQuestion8b]:checked').val();
    v15 = $('input[name=technologyQuestion9]:checked').val();
    $("#surveyButtonDiv").hide();
    $(".answer").hide();
    $("#upAnswers").show();
    $("#"+v1).show();
    $("#"+v2).show();
    $("#"+v3).show();
    $("#"+v4).show();
    $("#"+v5).show();
    $("#"+v6).show();
    $("#"+v7).show();
    $("#"+v8).show();
    $("#"+v9).show();
    $("#"+v10).show();
    $("#"+v11).show();
    $("#"+v12).show();
    $("#"+v13).show();
    $("#"+v14).show();
    $("#"+v15).show();
  });


