(function( $ ) {    
    $(document).ready(function() {    
        $("#nav").children("ul").children("li")
        .each(function(){
            if($(this).hasClass("current"))
                $(this).data("isCurrent", true);
            else
                $(this).data("isCurrent", false);
        })
        .hover(        
            function() { //hoverIn            
                var $this = $(this);                                
                $this.addClass("hover");
                if(! (navigator.userAgent.toLowerCase().substr(25,6)=="msie 6")) {
                    if($this.data("isCurrent") === true)
                        $this.removeClass("current");
                }                                
            },
            function() { //hoverOut
                var $this = $(this);                
                $this.removeClass("hover");
                if(! (navigator.userAgent.toLowerCase().substr(25,6)=="msie 6")) {
					if($this.data("isCurrent") === true)
                        $this.addClass("current");
                }      
            }
        )
    });    
} ( jQuery ));

