/*
 * jQuery Modal Dialogs
 * 
 * created by: Gary Ackerman - 8/11/2010
 *
 */

jQuery(document).ready(function () {

    $("#dialog").dialog("destroy");

    //-Beg: gettingQuotes (Please wait modal)----- (ctl00$phContent$cbGo)
    if ($("input[name='cbGo']").attr('checked')) {
        
        parent.$(".gettingQuotes").dialog({
            width: 450,
            bgiframe: true, //ie6 fix!
            modal: true
        });
        setTimeout('parent.window.location.replace("quotes.aspx");', 3000); //T1156 -gda - LOL
    };
    //-End: gettingQuotes ------------------------




});


