    jQuery(document).ready(function(){
        setTimeout(function(){
            jQuery("#lotus2").animate({opacity: 0.0},3000);
        },500);
        setTimeout(function(){
            jQuery("#lotus1").animate({opacity: 0.0},4000);
        },1500);
    });

