$(document).ready(function(){
    $(".nav li").hover(
        function() { $("> ul", this).show(); },
        function() { $("> ul", this).hide(); }
    );
    menuIndicator = $('<span class="menuIndicator">&raquo;</span>');
    $(".nav ul li:has(ul)").find("> a").prepend(menuIndicator);
});
