Proper Syntax for setting 'Blind' Speed w/Dialog

Proper Syntax for setting 'Blind' Speed w/Dialog


Hi all,
Here's what I have going on:
//create dialog
$("#test").load("loginformtest.asp").dialog({
    draggable: false,
    autoOpen: false,
    height: 430,
    width: 500,
    modal: true,
    position: "top",
    show: "blind",
    //show: {
        //effect: "blind",
        //speed: 1000
    //},
    resizable: false,
    overlay: {
        backgroundColor: '#000',
        opacity: 0.5
    },
    title: "Please Login or Create a New Account."
});
//open dialog box
function displaylogin() {
    //resize login modal to original size, then open
    $(".ui-dialog").height(430);
    $(".ui-dialog").width(500);
    $("#test").dialog("open");
}
Basically a link is clicked which opens the dialog and everything
works great.
What I can't figure out is how to set the speed of the blind effect
I'm trying to use to display the dialog. If I uncomment the 'show' and
its parameters I have commented above, it stops the dialog from
opening, which I assume is because I'm not using it properly in this
situation, thus I'm just using show: "blind".
Can anyone point me in the right direction?