$(document).ready(function(){
        $("#contact_form").hide();
        $("#history").hide();
        $("#show_history").click(function(){
            $("#history").slideToggle();
            event.preventDefault();
            return true;
            });
        $("#show_contact_form").click(function(){
            $("#contact_form").slideToggle();
            event.preventDefault();
            return true;
            });
        });
