<!--// 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>	var loaded=0;		var webSections = new Array();						webSections[0] = "buy_coffee";		webSections[1] = "candies";		webSections[2] = "club";		webSections[3] = "about_us";		webSections[4] = "newsletter";		var currentPage = '';		var currentType = '';// loop through the section array to identify the subscript of the section we're in                for (i=0; i < webSections.length; i++) {                	if (webSections[i] == section) {		i++;		currentPage = "img" + i;	}}if ((is_nav3up) || (is_ie4up)) br = "good";else br = "bad";							if (br == "good") {				img1on = new Image(); img1on.src ="/images/nav_1_on.gif";	img1off = new Image(); img1off.src ="/images/nav_1_off.gif";	img2on = new Image(); img2on.src ="/images/nav_2_on.gif";	img2off = new Image(); img2off.src ="/images/nav_2_off.gif";	img3on = new Image(); img3on.src ="/images/nav_3_on.gif";	img3off = new Image(); img3off.src ="/images/nav_3_off.gif";	img4on = new Image(); img4on.src ="/images/nav_4_on.gif";	img4off = new Image(); img4off.src ="/images/nav_4_off.gif";	img5on = new Image(); img5on.src ="/images/nav_5_on.gif";	img5off = new Image(); img5off.src ="/images/nav_5_off.gif";		img101on = new Image(); img101on.src ="/images/subnav_101_on.gif";	img101off = new Image(); img101off.src ="/images/subnav_101_off.gif";	img102on = new Image(); img102on.src ="/images/subnav_102_on.gif";	img102off = new Image(); img102off.src ="/images/subnav_102_off.gif";	img103on = new Image(); img103on.src ="/images/subnav_103_on.gif";	img103off = new Image(); img103off.src ="/images/subnav_103_off.gif";	img104on = new Image(); img104on.src ="/images/subnav_104_on.gif";	img104off = new Image(); img104off.src ="/images/subnav_104_off.gif";						}function imgOn(imgName) {	if (br == "good") {		document[imgName].src = eval(imgName + "on.src");	 }}function imgOff(imgName) {	if (br == "good") {		if (imgName == currentPage) {			document[imgName].src = eval(imgName + "on.src");		} else { 			document[imgName].src = eval(imgName + "off.src");		}	}}//-->
