// Copyright 2008 by Frank Koenen, Finkle Enterprises, LLC
// BUSINESS HOURS

window.quickquote21_configs = {

  // the maximum characters that a "Line" may contain
  'linemax': 25,

  // ------------------------------------------------
  // Provide the costs for the material, per sq. in. in decimal pennies, eg: 1.5 is 1 and 1/2 pennies.
  // ------------------------------------------------
  'materialcostfactor': 0.083334,

  // ------------------------------------------------
  // List the values to include in the sizes prompts
  // The value keys should be in the form 'aWWxHH', a literal 'a' and 2 digits height and width separated by 'x'
  // ------------------------------------------------
  'sizes':
  {
    'a16x20': '16" x 20"',    
    'a20x24': '20" x 24"',
       'end': 'end'
  },

  // ------------------------------------------------
  // List the values to include in the hourscolors prompts
  // ------------------------------------------------
  'hourscolors':
  {
     'white': 'White',
       'red': 'Red',
      'blue': 'Blue',
    'yellow': 'Yellow',
       'end': 'end'
  },

  // ------------------------------------------------
  // Provides the messages for the Q-mark clicks.
  // ------------------------------------------------
  quickquoteQmarkClick: function(s)
  {
    switch(s)
    {
      case 'dimensions':
       alert('Select the height x width dimensions');
       break;

      case 'quantity':
       alert('Select the appropriate quantity.');
       break;

      case 'hours':
       alert('Type Business Hours for each Day.');
       break;


      case 'turnaround':
       alert('Please select the turn around time from below.');
       break;

      case 'specialinstructions':
       alert('Enter any special instruction below.');
       break;

      case 'upload':
       alert('If Wanted, Please Upload Cut ready Simple Logo file. Have questions? Please call for details.');
       break;

    }
  },

  'fileUploadCost': 0.00,

  // ------------------------------------------------
  // List of turn around times. format: key :== item_cost, value = proper name
  // ------------------------------------------------
  'turnaroundspecs':
  {
     'pickup_0.0': 'Local Pickup- (Not Shipped)',
     'standard_9.5': 'Standard(Adds $9.50 Shipping to Total)',
     'expedite_30': 'Expedite(Adds $30 Shipping to Total)',
   
             'end': 'end'
  },

  'end': 'end'
};

