var DayNam = new Array('Ahad','Isnin','Selasa','Rabu','Khamis','Jumaat','Sabtu');
var MnthNam = new Array('Januari','Februari','Mac','April','Mei','Jun','Julai','Ogos','September','Oktober','November','Disember');

function SmakjELEM(id) {
    if ((document.getElementById) && (document.getElementById(id))) return document.getElementById(id);
    else if ((document.all) && (document.all(id))) return document.all(id);
    else if ((document.layers) && (document.layers[id])) return document.layers[id];
    else return false;
};

SmakjNBAR = function() {
	var menu = SmakjELEM('menu');
		
	if (!menu) 
		return false;
	
	for (var i = 0; i < menu.childNodes.length; i++) {
		var node = menu.childNodes[i];
		if (node.nodeName != 'LI') 
			continue;

		node.onmouseover = function() { 
			this.style.backgroundColor = '#356B8D';
			this.style.color = '#FFFFFF';
			this.className += ' over';
		}
		node.onmouseout = function() { 
			this.style.background = 'transparent';
			this.style.color = '#444444';
			this.className = this.className.replace(' over', '');
		}
	}
};

if (window.attachEvent) window.attachEvent('onload', SmakjNBAR);
else window.onload = SmakjNBAR; 

