﻿// IE 6 Image Cache
try {document.execCommand('BackgroundImageCache', false, true);} catch(e) {}

function _rl(url){window.location.href=url;}
//IE 6 Menu
ncHover = function() {     
    var ncME = document.getElementById("NCMenu").getElementsByTagName("li");     
    for (var i=0; i<ncME.length; i++) {         
        ncME[i].onmouseover=function() {this.className+=" over";}         
        ncME[i].onmouseout=function() {this.className=this.className.replace(new RegExp(" over\\b"), "");}     
    } 
} 

document.write("<!--[if lte IE 6]><style type=\"text/css\">#NCMenu ul li a:link, #NCMenu ul li a:visited{width:153px;}</style><![endif]-->");


if(window.attachEvent) window.attachEvent("onload", ncHover);