

function miniCartOver(act_hover)
{
  act_hover.className += " ih";
}

function miniCartOut(act_hover)
{
 act_hover.className = act_hover.className.replace(new RegExp(" ih\\b"), "");
}