/*  toggle the contact box */
$(document).ready(function() {
  $('.imprint').click(function() {
      $('.vc').show();
      //$(".imprint").toggle();
      
  });
});

