﻿function DoAnimate(id) {
    var element = $('#' + id);
    element.animate({ marginTop: '+=32' }, 600, function () { });
}
