$(document).ready(function() {

            if($.browser.msie && $.browser.version=="6.0") {
            $('#navPrimary > ul > li').hover(
                        function (){
                                    $("ul:first", this).css({
									"display":"block",
									"z-index":"100"
									});

                                    $("a:first", this).addClass("active");
                                    },
                        function (){
                                    $("ul:first", this).css("display","none");
                                    $("a:first", this).removeClass("active");
                                    });
            }

});

