//fake css :hover for ie6
if(window.attachEvent && parseInt(navigator.userAgent.substring(navigator.userAgent.indexOf('MSIE')+5))<7){
 fix = function()
 {
  //fake css :hover for nav menu
  var navRoot = document.getElementById('navMain'),i=0,cart;
  if(navRoot!=null)
  {
   while(navRoot.childNodes[i].nodeName!='UL')
    i++;
   navRoot=navRoot.childNodes[i];
   for (var i=0; i<navRoot.childNodes.length; i++)
   {
    var aNode = navRoot.childNodes[i];
    if(aNode.nodeName=='LI')
    {
     aNode.onmouseover=function(){this.className+='over';};
     aNode.onmouseout=function(){this.className=this.className.replace(/\s*over/,'');};
    };
   };
  };
  if(cart=document.getElementById('shoppingcart'))
   cart.innerHTML=cart.innerHTML;
 };
 window.attachEvent("onload", fix);
};
