$(function() {
            $(".menu ul ul li a").hover(function(){
                var ulID = $(this).parent().parent().attr("id");
//alert("ulID: " + ulID);
                newLoc = "#" + ulID + " .navImage";
//alert("newLoc: " + newLoc);
                oldSrc = $(newLoc).attr("src")
//                oldSrc2 = $("subNav5 #navImage").attr("src"); 
//alert("oldSrc: " + oldSrc);
//alert("oldSrc2: " + oldSrc2);
                newSrc = "/content/images/products/" + $(this).attr("id") + ".jpg"
//alert("newSrc: " + newSrc);
                $(newLoc).attr("src", newSrc);
                $(".displayImg-inner").css("display", "block");
            }, function(){
                $(newLoc).attr("src", oldSrc);
                $(".displayImg-inner").css("display", "none");
            });
        });
