﻿function Showtxt(i) {
    $("#rAdImg" + i).animate({
        width: "0",
        height: "115px"
    }, 400, function() {
        $("#rAdLi" + i).hide();
        $("#rAdImg" + i).hide();
        $("#rAdtxt" + i).show();
        $("#rAdtxt" + i).width(0);
        $("#rAdtxt" + i).height(87);
        $("#rAdtxt" + i).animate({
            width: "130px",
            height: "145px"
        }, 10);
    });
}

function ShowImg(i) {
    $("#rAdtxt" + i).animate({
        width: "0",
        height: "79px"
    }, 10, function() {
        $("#rAdtxt" + i).hide();
        $("#rAdLi" + i).show();
        $("#rAdImg" + i).show();

        $("#rAdImg" + i).width(0);
        $("#rAdImg" + i).height(48);
        $("#rAdImg" + i).animate({
            width: "120px",
            height: "115px"
        }, 400);
    }
        );
}