function swapViews(containerClassToShow){  
  $(".expanded-container").hide();
  $("."+containerClassToShow).addClass("expanded-container").show();
  //slideUp();slideDown();
}

function submitDeal(type){
  var data_hash = {deal_type: type};

  $('input').each(function(index, item){
    data_hash[$(item).attr('name')] = $(item).val();
  });

  $.ajax({
    url: '/opportunity-corner/submit-deal',
    data: data_hash,
    success: function() {
      swapViews('confirm-view');
    },
    error: function() {
    }
  });

}


