﻿

var quiz = [

                 { "ques": "Are you running your business based only on your checking account balance?",
                     "ans": "No",
                     "ansSel": ["Yes"],
                     "helpAns": "We can evaluate your accounting system and provide alternatives that would be useful to you besides your checking account balances."
                 }
                 , { "ques": "Are you unhappy with the cost of getting your taxes done?",
                     "ans": "No",
                     "ansSel": ["Yes"],
                     "helpAns": "We can prepare your taxes for you at more than competitive rates.  In addition, we can make suggestions for your accounting system that will make tax preparation easier."
                 }
                 , { "ques": "Are you able to produce the reports that your banker wants?",
                     "ans": "Yes",
                     "ansSel": ["No"],
                     "helpAns": "We will help you understand what the Bank requires and assist you in preparing those reports."
                 }
                 , { "ques": "Are you frustrated trying to get a line of credit from the bank?",
                     "ans": "No",
                     "ansSel": ["Yes"],
                     "helpAns": "We can work with you to prepare a request that will meet the banks needs.  We can also meet with you and your banker to help better understand those needs."
                 }
                 , { "ques": "Are you confident your products or services are profitable?",
                     "ans": "Yes",
                     "ansSel": ["No"],
                     "helpAns": "We can help you use your accounting system to give you information on the cost of your products or services to see if they are making money for you."
                 }
                 , { "ques": "Are you having problems paying your bills?",
                     "ans": "No",
                     "ansSel": ["Yes"],
                     "helpAns": "There can be many reasons for bills being paid late.  We can help you understand how your cash flow is working and how it can work for you."
                 }
                 , { "ques": "Are you satisfied with your payroll process?",
                     "ans": "Yes",
                     "ansSel": ["No"],
                     "helpAns": "We can assist you  understand your payroll options.  We can do payroll for you if that is your best option."
                 }
            ];


var options = {
    "quizType": "multiplyChoiceOl",
    "multiplyChoiceLength": "2",
    "addToEnding": "false",
    "showWrongAns": "true",
    "title": "Consulting Needs Quiz",
    "right": 'Good.'
}




jQuery(document).ready(function() {
    jQuery("#quiz1").jQuizMe(quiz, options);
});







