/* =============================================================================

config.js

Configuration for JavaScript interaction enhancements (plugins, widgets, etc).

Enhancements included:
  iFadeImg

Developed by Jake Kronika <jkronika@imagescape.com>
For Imaginary Landscape, LLC <www.imagescape.com>
Copyright (c) 2008

Last updated 2008.03.03

Reuse or modification without permission is prohibited.

----------------------------------------------------------------------------- */

// local definitions of global variables
var iFade, iFadeCalls, ifade_slideshow,
    ifade_array = [
  { image   : '/images/cnt-hd/default.jpg',
    alt     : 'Welcome' },

  { image   : '/images/cnt-hd/about/default.jpg',
    alt     : 'About Us' },

  { image   : '/images/cnt-hd/contact/default.jpg',
    alt     : 'Contact Us' },

  { image  :  '/images/cnt-hd/catalog/default.jpg',
    alt    :  'Catalog' },

  { image  :  '/images/cnt-hd/catalog/materials.jpg',
    alt    :  'Materials' },

  { image  :  '/images/cnt-hd/catalog/testing.jpg',
    alt    :  'Testing and Compliances' },

  { image  :  '/images/cnt-hd/catalog/warranty.jpg',
    alt    :  'Warranty' },

  { image  :  '/images/cnt-hd/contact/catalog.jpg',
    alt    :  'Order a Catalog' },

  { image  :  '/images/cnt-hd/contact/employment.jpg',
    alt    :  'Employment' }
];

var iFadeCalls = function () {
  ifade_slideshow = new iFade(
    'cnt-hd-img',
    ifade_array, {
      loop : true,
      initial_pause : 5,
      subseq_pause : 3
    });
};
