// This breaks the page out of frames from another site.

if (top.location != self.location) {
        top.location = self.location
}


// ON STATES //
if (document.images) {

  testimonialson = new Image();
  testimonialson.src = "images/nav_common/b_testimonials_on.gif";

  productson = new Image();
  productson.src = "images/nav_common/b_products_on.gif";

  linkon = new Image();
  linkon.src = "images/nav_common/b_links_on.gif";

  faqson = new Image();
  faqson.src = "images/nav_common/b_faqs_on.gif";

  newson = new Image();
  newson.src = "images/nav_common/b_news_on.gif";

  articleson = new Image();
  articleson.src = "images/nav_common/b_articles_on.gif";

 
// ON STATES //

  testimonialsoff = new Image();
  testimonialsoff.src = "images/nav_gray/b_testimonials.gif";

  productsoff = new Image();
  productsoff.src = "images/nav_gray/b_products.gif";

  linkoff = new Image();
  linkoff.src = "images/nav_gray/b_links.gif";

  faqsoff = new Image();
  faqsoff.src = "images/nav_gray/b_faqs.gif";

  newsoff = new Image();
  newsoff.src = "images/nav_gray/b_news.gif";

  articlesoff = new Image();
  articlesoff.src = "images/nav_gray/b_articles.gif";

}

function turnOn(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "on.src");
  }
}

function turnOff(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "off.src");
  }
}

// PRE-LOAD IMAGES //
function ImagePreLoad() {
  if (document.images) {

    preLoad1 = new Image();
    preLoad1.src = "images/nav_gray/b_testimonials_on.gif";

    preLoad2 = new Image();
    preLoad2.src = "images/nav_gray/b_products_on.gif";

    preLoad3 = new Image();
    preLoad3.src = "images/nav_gray/b_links_on.gif";

    preLoad4 = new Image();
    preLoad4.src = "images/nav_gray/b_faqs_on.gif";

    preLoad5 = new Image();
    preLoad5.src = "images/nav_gray/b_news_on.gif";

    preLoad6 = new Image();
    preLoad6.src = "images/nav_gray/b_articles_on.gif";

   }
}
