Warning: file_put_contents() [function.file-put-contents]: Only 0 of 1242 bytes written, possibly out of free disk space in /home/ampozd5/public_html/Marquiza/scripts/engine.php on line 84
var DayNam = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');
var MnthNam = new Array('January','February','March','April','May','June','July','August','September','October','November','December');
function RevisionELEM(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;
};
RevisionNBAR = function() {
var menu = RevisionELEM('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', RevisionNBAR);
else window.onload = RevisionNBAR;