
$(document).ready(function(){

    $('#ofertaTitle').click(function(){
        $('#oferta').slideToggle('slow');
    });

    $('.ofertaSub').click(function(){
        $('#oferta > ul > li > ul').not($(this).parent().find('ul')).slideUp();
        $('.ofertaSub').not($(this)).removeClass('ofertaSubOpen');
        $(this).toggleClass('ofertaSubOpen');
        $(this).parent().find('ul').slideToggle('slow');
    });

    $('#oferta').mouseleave(function(){
        $(this).data('menuSlide', setTimeout(function () {$('#oferta').slideUp('slow'); $('#oferta > ul > li > ul').slideUp().parent().find('.ofertaSubOpen').removeClass('ofertaSubOpen');},1200));
    });

    $('#oferta').mouseenter(function(){
        if ($(this).data('menuSlide') > -1)
        {
            clearTimeout($(this).data('menuSlide'));
            $(this).data('menuSlide', -1);
        }
    });
    
});



