/**
 * @author Shawn Welch <shrimpwagon@yahoo.com>
 */
$(document).ready(function(){
    $.LiveDesign = new Object();
    
    $.LiveDesign.show = function(){
        $.fn.colorbox({
            href: '/ajax/ajaxLiveDesign.php',
            speed: "100",
            width: "900px",
            height: "600px",
            open: true
        }, function(){
            $('#phone').phoneNumber();
            
            $('#live-design-form').validateForm({
                beforeSubmit: function(){
                    $('#cboxLoadedContent').blockElement();
                },
                type: 'post',
                dataType: 'json',
                success: function(data){
                    if (data.status == 'success') {
                        window.location.href = '/quote_request.php?id=' + data.id + '&live_design=true';
                    }
                    else {
                        alert(data.message);
                        $('#cboxLoadedContent').unblock();
                    }
                }
            });
        });
    }
});
