﻿     $(document).ready(function(){
        $("div#getintouch").hide();
        
        $("a#lnkgetintouch").click(function () {
            $("div#getintouch").slideToggle(1100, function () {$("input:text:first").focus(); });
        return false;
    });
     
 });