// Copyright 2008 by Frank Koenen, Finkle Enterprises, LLC
// CANVAS

window.quickquote13_configs = {

  // the maximum characters that a "Line" may contain
  'linemax': 20,

  // ------------------------------------------------
  // List the values to include in the Material prompt
  // ------------------------------------------------
  'materials':
  {
         'canvasgloss': 'Canvas',
 //        'canvasmatte': 'Matte',
 //               'summersetvelvet': 'Summerset Velvet',
 //               'watercolor': 'Water Color',
             'end': 'end'
  },

  // ------------------------------------------------
  // Provide the costs for the materials, per sq. in. in decimal pennies, eg: 1.5 is 1 and 1/2 pennies.
  // ------------------------------------------------
  'materialcosts':
  {
        'canvasgloss': .173611,
 //          'canvasmatte': .1766,
 //          'summersetvelvet': .1950,
 //          'watercolor': .1960,
             '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 in inches separated by 'x'
  // ------------------------------------------------
  'sizes':
  {
    'a11x14': '11" x 14"',
    'a11x16': '11" x 16"',
    'a12x16': '12" x 16"',
    'a14x18': '14" x 18"',
    'a16x16': '16" x 16"',    
    'a16x20': '16" x 20"',    
    'a17x22': '17" x 22"',    
    'a18x24': '18" x 24"', 
    'a20x20': '20" x 20"',
    'a20x24': '20" x 24"',
    'a20x30': '20" x 30"',
    'a24x30': '24" x 30"', 
    'a24x32': '24" x 32"',
    'a24x36': '24" x 36"', 
    'a27x36': '27" x 36"', 
    'a30x30': '30" x 30"',
    'a30x40': '30" x 40"',
       'end': 'end'
  },

  // ------------------------------------------------
  // Options
  // ------------------------------------------------
  'options':
  {
      'rolled': 'Rolled',
    'gwrapped': 'Gallery Wrapped/ FRAMED',
    'end': 'end'
  },

  // ------------------------------------------------
  // Options cost, added to flat cost per sign.
  // ------------------------------------------------
  'optionscosts':
  {
      'rolled': 0.00,
    'gwrapped': 15.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 'sides':
       alert('Select either single or doubled sided.');
       break;

      case 'material':
       alert('Select the appropriate material.');
       break;

      case 'quantity':
       alert('Select the appropriate quantity.');
       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 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'
};
