
<!-- start JS hide

if (document.images)
  {
  // browser supports Image object, so preload all images

design         = new Image()
  design.src     = "images/design-br.gif"       // unlit DESIGN image
  design_on      = new Image()
  design_on.src  = "images/design-gr.gif"    // lit DESIGN image

hosting         = new Image()
  hosting.src     = "images/hosting-br.gif"       // unlit HOSTING image
  hosting_on      = new Image()
  hosting_on.src  = "images/hosting-gr.gif"    // lit HOSTING image

gallery         = new Image()
  gallery.src     = "images/gallery-br.gif"       // unlit GALLERY image
  gallery_on      = new Image()
  gallery_on.src  = "images/gallery-gr.gif"    // lit GALLERY image

resources         = new Image()
  resources.src     = "images/resources-br.gif"       // unlit RESOURCES image
  resources_on      = new Image()
  resources_on.src  = "images/resources-gr.gif"    // lit RESOURCE image

contact         = new Image()
  contact.src     = "images/contact-br.gif"       // unlit contact image
  contact_on      = new Image()
  contact_on.src  = "images/contact-gr.gif"    // lit contact image

  }
else
  {
  // browser does NOT support Image object, so set all image vals to ""
  // to prevent errors from arising in onMouseOver/onMouseOut handlers
  design = ""; design_on = ""
  hosting = ""; hosting_on = ""
  gallery = ""; gallery_on = ""
resources = ""; resources_on = ""
contact = ""; contact_on = "";
  document.designImg = ""; document.hostingImg = ""; document.galleryImg= ""; document.resourcesImg = ""; document.contactImg = "";
  }

// end JS hide --> 

