
            function ieHax()
            {
                var browser=navigator.appName;
                if(browser == "Microsoft Internet Explorer")
                {
                    document.getElementById("mainDiv").style.marginTop = "16px";
                    document.getElementById("dotsIE").style.marginBottom = "12px";
                    document.getElementById("list1").style.padding = "1px";
                    document.getElementById("list1").style.paddingLeft = "0px";

                    var lists = document.getElementsByTagName("li");
                    for(var i = 0; i < lists.length; i++)
                    {
                        lists.item(i).style.marginBottom = "-5px";
                        lists.item(i).style.marginTop = "-5px";
                    }
                }
            }