<!--

// The syntax for using these functions in an HTML document are as follows:
//
// <a href="#" onMouseOver="imgOn('img2')" onMouseOut="imgOff('img2')">
// <img src="file.gif" name="img2" width="60" height="60" border="0"></a>


if ((is_nav3up) || (is_ie4up)) br = "good";

else br = "bad";


if (br == "good") {
			img1on = new Image(); img1on.src = "/ebeans/images/nav_home_on.gif";
	        img1off = new Image(); img1off.src = "/ebeans/images/nav_home_off.gif";
			img2on = new Image(); img2on.src = "/ebeans/images/nav_about_us_on.gif";
	        img2off = new Image(); img2off.src = "/ebeans/images/nav_about_us_off.gif";
			img3on = new Image(); img3on.src = "/ebeans/images/nav_our_chocolates_on.gif";
	        img3off = new Image(); img3off.src = "/ebeans/images/nav_our_chocolates_off.gif";
	        img4on = new Image(); img4on.src = "/ebeans/images/nav_contact_us_on.gif";
	        img4off = new Image(); img4off.src = "/ebeans/images/nav_contact_us_off.gif";
	        img5on = new Image(); img5on.src = "/ebeans/images/nav_specialty_on.gif";
	        img5off = new Image(); img5off.src = "/ebeans/images/nav_specialty_off.gif"; 

}



function imgOn(imgName) {
        if (br == "good") {
                document[imgName].src = eval(imgName + "on.src");
                //document.hold.src = eval(imgName + "hold.src");
                
                //window.status = eval(imgName + "copy");
       			
       }

}

function imgOff(imgName) {
        if (br == "good") {
                document[imgName].src = eval(imgName + "off.src");
	            }
  				     
        
        }



//-->
