$(document).ready(function(){
    //inject the LI IMG tag with a fade pic ( pos: absolute)  on hover, part of the same HREF  
    
    var badBrowser = (/MSIE ((5\.5)|6)/.test(navigator.userAgent) && navigator.platform == "Win32");
    if (badBrowser) {
        // later code goes here
    }
    else {
    
        $("#home-nav li a").hover(function(){
            $('<img id="hover-fade" src="/images/mainmenu/hover_fade.png" />').appendTo(this);
            
            
        }, function(){
        
            $("#hover-fade").remove();
            
        });
    }
    
    
    
    
});

