function ieHoverInit(wrapperList, tagname)
{
    for(i=0; i < wrapperList.getElementsByTagName(tagname).length; i++)
    {
        wrapperList.getElementsByTagName(tagname)[i].onmouseover = function()
        {
            if(this.className != "")
                this.className = this.className + " ";
                
            this.className = this.className + "ieHover";
        }
        wrapperList.getElementsByTagName(tagname)[i].onmouseout = function()
        {
            this.className = this.className.replace(/ ?ieHover/i, "");
        }
    }
}