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