$(document).ready( function() {
    
    $(document.body).append('<iframe id="getintouch_frm" name="getintouch_frm" style="display:none; height:10px; width:10px;"></iframe>');

    var _getIntouch = $('#getintouch').eq(0);
    var moveContactBox = function() {
        var _top = $(window).scrollTop() + 152;
        
        _getIntouch.css( {
                        top: _top + 'px',
                        left: '204px'
                    } );
    };
    
    $(window).scroll(moveContactBox)
    
    $('#getintouch-link').click( function() {
        _getIntouch.toggle('slow', moveContactBox);
        $("#getintouch .top label, #getintouch .cont").css('display', '');
        $("#getintouch .thank-you").css('display', 'none');
        return false;
    });

     $('#getintouch #send').click( function() { $('#getintouch form').submit();  return false;} );
    
    $('#getintouch span.close a').click( function() { _getIntouch.hide('slow');  return false;} );
    
});
