$(function () {
    
    // Navigation effects
    $(".lavaLamp > ul").lavaLamp({ fx: "backout", speed: 700 });
    $(".lavaLamp ul li:has(ul)").hoverIntent(function () {
        $(this).children("ul").hide();
        $(this).children("ul").slideDown();
    }, function () {
        $(this).children("ul").hide();
    });

});



