$(document).ready(function(){
  $("#overlay").css("height", $(document).height()).hide();
  $('#overlay').hide();
  $('#tdihCode').hide();
  $('#quoteCode').hide();
  $('#closeLink').click('closeOverlay');
});
function showQuote() {
  $("#overlay").slideToggle(400);
  $('#quoteCode').show();
  if ($(window).height() > $('#overlaycontent').height()) {
    $('#overlaycontent').css('margin-top',Math.round(($(window).height()-$('#overlaycontent').height())/2));
  }
}
function showTdih() {
  $("#overlay").slideToggle(400);
  $('#tdihCode').show();
  if ($(window).height() > $('#overlaycontent').height()) {
    $('#overlaycontent').css('margin-top',Math.round(($(window).height()-$('#overlaycontent').height())/2));
  }
}
function closeOverlay() {
  $("#overlay").slideToggle(400);
  $('#tdihCode').hide();
  $('#quoteCode').hide();
}
