<!-- Activate Cloaking Device
window.onerror=null;
var netscape = 0;
var goodIE = 0;
browserName = navigator.appName.substring(0,8);
browserVer = parseFloat(navigator.appVersion);

if (browserName == "Netscape" && browserVer >= 3)
{
  netscape = 1;
}

if (browserName == "Microsof" && browserVer == 4)
{
  goodIE = 1;
}

if (netscape || goodIE)
{
  home_off = new Image;
  home_off.src = "images/home1.gif";
  home_on = new Image;
  home_on.src = "images/home2.gif";

  classes_off = new Image;
  classes_off.src = "images/classes1.gif";
  classes_on = new Image;
  classes_on.src = "images/classes2.gif";

  register_off = new Image;
  register_off.src = "images/register1.gif";
  register_on = new Image;
  register_on.src = "images/register2.gif";
  
  tips_off = new Image;
  tips_off.src = "images/tips1.gif";
  tips_on = new Image;
  tips_on.src = "images/tips2.gif";
  
  pictures_off = new Image;
  pictures_off.src = "images/pictures1.gif";
  pictures_on = new Image;
  pictures_on.src = "images/pictures2.gif";
      
  mylinks_off = new Image;
  mylinks_off.src = "images/links1.gif";
  mylinks_on = new Image;
  mylinks_on.src = "images/links2.gif";
  
  resources_off = new Image;
  resources_off.src = "images/resources1.gif";
  resources_on = new Image;
  resources_on.src = "images/resources2.gif";

  faq_off = new Image;
  faq_off.src = "images/faq1.gif";
  faq_on = new Image;
  faq_on.src = "images/faq2.gif";

  about_me_off = new Image;
  about_me_off.src = "images/about_me1.gif";
  about_me_on = new Image;
  about_me_on.src = "images/about_me2.gif";
  
  testimonials_off = new Image;
  testimonials_off.src = "images/testimonials1.gif";
  testimonials_on = new Image;
  testimonials_on.src = "images/testimonials2.gif";
  
  contact_off = new Image;
  contact_off.src = "images/contact1.gif";
  contact_on = new Image;
  contact_on.src = "images/contact2.gif";
}

function img_off(imgName)
{
  if (netscape || goodIE)
  {
    imgOff = eval(imgName + "_off.src"); 
    document[imgName].src = imgOff;
  }
}

function img_on(imgName)
{ 
  if (netscape || goodIE)
  { 
    imgOn = eval(imgName + "_on.src"); 
    document[imgName].src = imgOn;
  }
}
// Deactivate Cloaking -->