// JavaScript Document
function fnInitNav(vBox,vTag) {
      if (document.getElementById(vBox)) {
            navRoot = document.getElementById(vBox);
            for (i=0; i<navRoot.childNodes.length; i++) {
                  node = navRoot.childNodes[i];
                  if (node.nodeName==vTag) {
                        node.onmouseover=function() {this.className=this.className.replace(" over", "");this.className+=" over";}
                        node.onmouseout=function() {this.className=this.className.replace(" over", "");}
                  }
            }
      }
}

$().ready(function(){
	if(IE='\v'=='v'){
		fnInitNav("bxMetaNav","LI");
		fnInitNav("bxMainNav","LI");
	}
	cacheImage1 = document.createElement('img');
	cacheImage2 = document.createElement('img');
	cacheImage1.src = '/Assets/CSS/img/Style-v1.0-corner-gray-on-light-gray.gif';
	cacheImage2.src = '/Assets/CSS/img/Style-v1.0-corner-gray.gif';
	});
