/*rollOver.js
*When you mouse over a navigation picture, the picture changes to its hot type
*/
<!-- Hide from old browsers

browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);

if(navigator.userAgent.indexOf("Mozilla/3.0") != -1) version = "n3";
else if (browserName == "Netscape" && browserVer >= 4) version = "n3";
else if (browserName == "Microsoft Internet Explorer" && browserVer >= 3)
        version = "n3";
else version = "n2";
if(version == "n3")
{       nav_firstaid = new Image();
        nav_firstaid.src = "/images/buttons/nav_firstaid.gif";
        nav_whatispoison = new Image();
        nav_whatispoison.src = "/images/buttons/nav_whatispoison.gif";
        nav_poisoncenter = new Image();
        nav_poisoncenter.src = "/images/buttons/nav_poisoncenter.gif";
        nav_1800 = new Image();
        nav_1800.src = "/images/buttons/nav_1800.gif";
        nav_poisonprevention = new Image();
        nav_poisonprevention.src = "/images/buttons/nav_poisonprevention.gif";
        nav_stats = new Image();
        nav_stats.src = "/images/buttons/nav_stats.gif";
        nav_week = new Image();
        nav_week.src = "/images/buttons/nav_week.gif";
        nav_aapcc = new Image();
        nav_aapcc.src = "/images/buttons/nav_aapcc.gif";
        nav_pressroom = new Image();
        nav_pressroom.src = "/images/buttons/nav_pressroom.gif";
        nav_faqs = new Image();
        nav_faqs.src = "/images/buttons/nav_faqs.gif";
        nav_links = new Image();
        nav_links.src = "/images/buttons/nav_links.gif";
        nav_jingles = new Image();
        nav_jingles.src = "/images/buttons/nav_jingles.gif"
        
        nav_firstaid_hot = new Image();
        nav_firstaid_hot.src = "/images/buttons/nav_firstaid_hot.gif";
        nav_whatispoison_hot = new Image();
        nav_whatispoison_hot.src = "/images/buttons/nav_whatispoison_hot.gif";
        nav_poisoncenter_hot = new Image();
        nav_poisoncenter_hot.src = "/images/buttons/nav_poisoncenter_hot.gif";
        nav_1800_hot = new Image();
        nav_1800_hot.src = "/images/buttons/nav_1800_hot.gif";
        nav_poisonprevention_hot = new Image();
        nav_poisonprevention_hot.src = "/images/buttons/nav_poisonprevention_hot.gif";
        nav_stats_hot = new Image();
        nav_stats_hot.src = "/images/buttons/nav_stats_hot.gif";
        nav_week_hot = new Image();
        nav_week_hot.src = "/images/buttons/nav_week_hot.gif";
        nav_aapcc_hot = new Image();
        nav_aapcc_hot.src = "/images/buttons/nav_aapcc_hot.gif";
        nav_pressroom_hot = new Image();
        nav_pressroom_hot.src = "/images/buttons/nav_pressroom_hot.gif";
        nav_faqs_hot = new Image();
        nav_faqs_hot.src = "/images/buttons/nav_faqs_hot.gif";
        nav_links_hot = new Image();
        nav_links_hot.src = "/images/buttons/nav_links_hot.gif";
        nav_jingles_hot = new Image();
        nav_jingles_hot.src = "/images/buttons/nav_jingles_hot.gif";
}

function img_act(imgName)
{       if(document.images)
        {       imgHot = eval(imgName + "_hot.src");
                document.images[imgName].src = imgHot;
        }
}

function img_inact(imgName)
{       if(document.images)
        {       imgReg = eval(imgName + ".src");
                document.images[imgName].src = imgReg;
        }
}

// Stop hiding from old browsers -->

