﻿$(document).ready(function () {
    $('#___leavemessage .root').hover(function () {
        $(this).find('table .tr1 .td2 .inputbox').show('fast', function () {
            $('#___leavemessage .root').animate({
                marginLeft: -400
            }, 'fast', null);
        });
    }, function () {
        $(this).find('table .tr1 .td2 .inputbox').hide('fast', function () {
            $('#___leavemessage .root').animate({
                marginLeft: 0
            }, 'fast', function () {
                //$(this).css('position', 'inherit');
            });
        });
    });
});
