﻿$(document).ready(function(){
    // Setup elements and positioning
    setTimeout(function(){
            $("ul.secondary > li:has(ul)").each(function(){
                var pos = $(this).position();
                $(this).find(">ul").css({top: pos.top + 43 + "px", left: pos.left + "px"})
                    .find("li:first").prepend($("<span class='tertiaryTop'></span>"));
            });
        });
        
    // Show tertiary nav on hover
    $("ul.secondary>li:has(.tertiary)").hover(
        function(){ $(this).find(".tertiary").css({zIndex: 100}).show(); },
        function(){ $(this).find(".tertiary").css({zIndex: 99}).hide(); });
});
