$(document).ready(function (){
    animate = function() {
        $(".top1").stop().animate({ width: 688 });
        $("#formComments").stop().animate({ top: 0 });
        $(".top2 input").unbind('focus', animate);
    }
    $(".top2 input").bind('focus', animate);
});