$(document).ready(function() {
    $("#quote").hide();
    $("#quote").delay(400).fadeIn(1000, function() {
    });
    
});

