document.observe('dom:loaded', function() {
    
    
    function thank_you() {
        
        var go = confirm("Thank You! \n Your interest in Del's LA is much appreciated. \n Some one will be intouch soon \n\n Owner Del's LA, \n Michael Shippee");
        
        if (go){
            $('form_catering').submit();
            return true;
        } else {
            return false;
        }
    }
   
   
   
   $('submit_btn').observe('click', thank_you);
   
    
    
});