﻿$(document).ready(function () {
    // When mouse is removed   
    $("#mainnav li div ul li").mouseleave(function () {
        if ($(this).find('.subsubholder .subsubmenu li').size() > 0) {
            $(this).find('.lls').css('background', 'none');
            $(this).find('.subsubholder .subsubmenu').stop().animate({ 'margin-left': '-280px' }, { queue: false, duration: 300, easing: 'easeOutQuad' })
            var that = this;
            setTimeout(function () {
                $(that).find('.subsubholder').css('display', 'none');
            }, 300);
        }
    });
    $("#mainnav li div ul li .lls").mouseenter(function () {
        if ($(this).parent().find('.subsubholder .subsubmenu li').size() > 0) {
            $(this).css('background', '#96cbd8');
            $(this).parent().find('.subsubholder').css('display', 'block');
            $(this).parent().find('.subsubholder').css('height', $(this).parent().find('.subsubholder .subsubmenu li').size() * 100);
            $(this).parent().find('.subsubholder .subsubmenu').stop().animate({ 'margin-left': '0px' }, { queue: false, duration: 300, easing: 'easeOutQuad' });
        }
    });
});  
