/* * To change this template, choose Tools | Templates * and open the template in the editor. */ jQuery(document).ready(function($) { $('.submenu').hide(); jQuery.each($('.submenu'), function() { $(this).find('li.activeli').parent().show(); }); $('.tlvl').click(function() { if($(this).next().is(':visible')){ $(this).next().slideUp(); } else { $(this).next().slideDown(); } }); });