HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/KWessing/in2tech.nl/wwwroot/wp-content/themes/arjuna-x/ie6.js
//Dropdown for IE6
SRS.dd = function() {
	if(document.getElementById("headerMenu1")) {
		var els = document.getElementById("headerMenu1").getElementsByTagName("LI");
		for (var i=0; i<els.length; i++) {
			els[i].onmouseover = function() {
				this.className += " jHover";
				this.style.zIndex = '2';
			};
			els[i].onmouseout = function() {
				this.className = this.className.replace(new RegExp(" jHover\\b"), "");
				this.style.zIndex = '1';
			};
		}
	}

	var els = document.getElementById("headerMenu2").getElementsByTagName("LI");
	for (var i=0; i<els.length; i++) {
		els[i].onmouseover = function() {
			this.className += " jHover";
			this.style.zIndex = '2';
		};
		els[i].onmouseout = function(e) {
			this.className = this.className.replace(new RegExp(" jHover\\b"), "");
			this.style.zIndex = '1';
		};
	}
}

SRS.addLoadEvent(SRS.dd);