$(document).ready(function(){
    $(".mainmenu").lavaLamp({ speed: 300 });
    Cufon.replace('h2.title');    
    
    $("#send").click(function() {
        var ser = $("#quote-form").serialize();
        $(".ajax-message").html('<img src="/images/preload.gif" alt="Please wait" />');
        $.ajax({  
            type: "POST",  
            url: "/ajax.php",  
            data: ser,  
            success: function(msg) {  
                $("#quote-form").slideUp("fast", function(){
                    $(".ajax-message").css('margin-top', '10em');
                    $(".ajax-message").html(msg);
                });
            }});  
        return false;
    });
});

function sleep(ms)
{
    var dt = new Date();
    dt.setTime(dt.getTime() + ms);
    while (new Date().getTime() < dt.getTime());
}

