
function thankyou() {
    jQuery("#thankyou").fadeIn(2000);
}

function whitebox() {
    jQuery("#whitebox").fadeIn(2000,thankyou);
}

jQuery(document).ready(function () {
    jQuery("#geri").show("slide",{ direction: "left" }, 2000, whitebox);
});

