﻿$(document).ready(function() {
    $("#button1").click(function() {
        $("#contact").slideToggle("slow");
    });
});