// Copyright 2008 by Frank Koenen, Finkle Enterprises, LLC
// STREET SIGNS

window.quickquote18_configs = {

  // the maximum characters that a "Line" may contain
  'linemax': 25,

  // ------------------------------------------------
  // List the values to include in the Material prompt
  // ------------------------------------------------
  'materials':
  {
       'x040aluminum': 'Green .040 Aluminum Non-Reflective',
  //              'x080aluminum': '.080 Aluminum',
  //              'x080reflective': '.080 Reflective',
                'end': 'end'
  },

  // ------------------------------------------------
  // Provide the costs for the materials, per sq. in. in decimal pennies, eg: 1.5 is 1 and 1/2 pennies.
  // ------------------------------------------------
  'materialcosts':
  {
       'x040aluminum': 0.22223,
//                  'x080aluminum': 0.290,
//                  'x080reflective': 0.370,
                'end': 'end'
  },

  // ------------------------------------------------
  // 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':
  {
//   'a6x18': '6" x 18"',    
    'a6x24': '6" x 24"',    
//               'a6x36': '6" x 36"',
//               'a9x36': '9" x 36"',
       'end': 'end'
  },

  // ------------------------------------------------
  // Cornering styles
  // ------------------------------------------------
  'cornering':
  {

    '.75': '3/4" Radius',
//        '1.5': '1.5" Radius',

    'end': 'end'
  },

  // ------------------------------------------------
  // Cornering costs, added to flat cost per sign.
  // ------------------------------------------------
  'coneringcosts':
  {
    '.75': 0.0,
//        '1.5': '1.5" Radius',

    'end': 'end'
  },

  // ------------------------------------------------
  // Holes
  // ------------------------------------------------
  'holes':
  {
    'no': 'No',
    'yes': 'Yes',
    'end': 'end'
  },

  // ------------------------------------------------
  // Holes cost, added to flat cost per sign.
  // ------------------------------------------------
  'holescosts':
  {
    'no': 0,
    'yes': 5.00,
    '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 'corners':
       alert('Select Corner Style.');
       break;

      case 'holes':
       alert('Select if you want Holes.');
       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('At checkout you will be able to upload a cut ready, or print ready 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'
};
