<!--
// Detect if browser is Netscape 3 + or IE 4 +.
bName = navigator.appName;
bVer = parseInt(navigator.appVersion);
    if ((bName == "Netscape" && bVer >= 3) || 
        (bName == "Microsoft Internet Explorer" && bVer >= 4)) br = "n3"; 
    else br = "n2";

// Create image objects, preload all active and inactive images.
    if (br== "n3") {     
    
    
   <!--nav rollovers-->
    
    subnav1on = new Image();           
   	subnav1on.src = "/images/emotional_i/nav/subnav1_on.gif";  
	subnav1off = new Image();           
    subnav1off.src = "/images/emotional_i/nav/subnav1_off.gif";
    
    subnav2on = new Image();           
   	subnav2on.src = "/images/emotional_i/nav/subnav2_on.gif";  
	subnav2off = new Image();           
    subnav2off.src = "/images/emotional_i/nav/subnav2_off.gif";
    
    subnav3on = new Image();           
   	subnav3on.src = "/images/emotional_i/nav/subnav3_on.gif";  
	subnav3off = new Image();           
    subnav3off.src = "/images/emotional_i/nav/subnav3_off.gif";
    
    subnav4on = new Image();           
   	subnav4on.src = "/images/emotional_i/nav/subnav4_on.gif";  
	subnav4off = new Image();           
    subnav4off.src = "/images/emotional_i/nav/subnav4_off.gif";
    
    subnav5on = new Image();           
   	subnav5on.src = "/images/emotional_i/nav/subnav5_on.gif";  
	subnav5off = new Image();           
    subnav5off.src = "/images/emotional_i/nav/subnav5_off.gif";

    subnav6on = new Image();           
   	subnav6on.src = "/images/emotional_i/nav/subnav6_on.gif";  
	subnav6off = new Image();           
    subnav6off.src = "/images/emotional_i/nav/subnav6_off.gif";
    
    serviceson = new Image();           
   	serviceson.src = "/images/nav/services_on.gif";  
	servicesoff = new Image();           
    servicesoff.src = "/images/nav/services_off.gif";
    
    abouton = new Image();           
   	abouton.src = "/images/nav/about_on.gif";  
	aboutoff = new Image();           
    aboutoff.src = "/images/nav/about_off.gif";
  
    emotionalon = new Image();           
   	emotionalon.src = "/images/nav/emotional_on.gif";  
	emotionaloff = new Image();           
    emotionaloff.src = "/images/nav/emotional_off.gif";
    
    bingeon = new Image();           
   	bingeon.src = "/images/nav/binge_on.gif";  
	bingeoff = new Image();           
    bingeoff.src = "/images/nav/binge_off.gif";
    
    otheron = new Image();           
   	otheron.src = "/images/nav/other_on.gif";  
	otheroff = new Image();           
    otheroff.src = "/images/nav/other_off.gif";
    
    teenson = new Image();           
    teenson.src = "/images/nav/teens_on.gif";  
	teensoff = new Image();           
    teensoff.src = "/images/nav/teens_off.gif";
	
	proson = new Image();           
   	proson.src = "/images/nav/pros_on.gif";  
	prosoff = new Image();           
    prosoff.src = "/images/nav/pros_off.gif";
    
    nexton = new Image();           
   	nexton.src = "/images/nav/next_on.gif";  
	nextoff = new Image();           
    nextoff.src = "/images/nav/next_off.gif";
    
    contacton = new Image();           
   	contacton.src = "/images/nav/contact_on.gif";  
	contactoff = new Image();           
    contactoff.src = "/images/nav/contact_off.gif";
	
    mapon = new Image();           
   	mapon.src = "/images/nav/map_on.gif";  
	mapoff = new Image();           
    mapoff.src = "/images/nav/map_off.gif";
    
    homeon = new Image();           
   	homeon.src = "/images/nav/home_on.gif";  
	homeoff = new Image();           
    homeoff.src = "/images/nav/home_off.gif";
    
    logoon = new Image();           
    logoon.src = "/images/nav/logo_on.gif";  
	logooff = new Image();           
    logooff.src = "/images/nav/logo_off.gif";

    }

// Function to "activate" images.
function imgAct(imgName) {
    if (br == "n3") {
    document[imgName].src = eval(imgName + "on.src");
    }
}

// Function to "deactivate" images.
function imgInact(imgName) {
    if (br == "n3") {
    document[imgName].src = eval(imgName + "off.src");
    }
}
// -->