// JavaScript Document
		<!--
		function highLight(id, imageURL) {
			if (document.getElementById(id).src.indexOf("3") != -1)
				return false;
			else
				document.getElementById(id).src = imageURL;

			/*if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 4 ) && (parseInt(navigator.appVersion) < 5 )) { 
				ns4 = true;
			}
			else if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 5 )) { 
				ns6 = true; }
			else { 
				ie4 = true;
			}*/
		
		}
		
		function doClick(id, imageURL) {
			for (var i = 0; i < document.images.length; i++) {
				if (document.images[i]) {
				
				
				if (document.images[i].src.indexOf("meny-") != -1 && document.images[i].src.indexOf("3") != -1)
					document.images[i].src = document.images[i].src.substr(0, document.images[i].src.length - 5) + ".gif";
				}
			}
			
			document.getElementById(id).src = imageURL;
		
		}
		

		
		-->

