$(document).ready(function() {
    $(".topMenuAction").click( function() {
        if ($("#openCloseIdentifier").is(":hidden")) {
            $("#slider").animate({
                marginTop: "210px"
                }, 500 );
            $("#topMenuImage").html('<img src="/images/get-in-touch.png"/>');
            $("#openCloseIdentifier").show();
				$.ajax({
				  url: "/views/includes/boxes/contact_form.php",
				  cache: false,
				  success: function(html){
					$("#contactForm").html(html);
				  }
				});

        } else {
            $("#slider").animate({
                marginTop: "0px"
                }, 500 );
            $("#topMenuImage").html('<img src="/images/get-in-touch.png"/>');
            $("#openCloseIdentifier").hide();
        }
    });
	$.ajax({
	  url: "/views/includes/boxes/contact_form.php",
	  cache: false,
	  success: function(html){
		$("#contactForm").append(html);
	  }
	});
});
