$(document).ready(function(){
  if (document.location.hash == "#openForm1") {
  	$('#openForm1').show();
  	$('#closedForm1').hide();
  	$('#openForm2').hide();
  	$('#closedForm2').show();
  }

  if (document.location.hash == "#openForm2") {
  	$('#openForm2').show();
  	$('#closedForm2').hide();
  	$('#openForm1').hide();
  	$('#closedForm1').show();
  }

   $('#closedForm2').click( function() {
            $('#openForm1').hide();
            $('#closedForm1').show();
            $('#openForm2').show();
            $('#closedForm2').hide();
      });

   $('#closedForm1').click( function() {
            $('#openForm1').show();
            $('#closedForm1').hide();
            $('#openForm2').hide();
            $('#closedForm2').show();
      });

 });