// JavaScript Document

$(document).ready(
    function(){

    $("div#nav ul li ul").each(function(){
          $(this).css("height", $(this).height()+"px");
          $(this).hide();
     });

    $("div#nav ul li.expandData ul").each(function(){
          $(this).show("slow");
     });

     $("div#nav ul li.expandData span").each(function(){
          $(this).toggleClass('active');
     });


        $('div#nav ul li span').click(
            function(){
              //alert($(this).next('ul').height())
              //$(this).next('ul').css('height', $(this).next('ul').height() + 'px');
             $(this).next('ul').slideToggle("slow");
             $(this).toggleClass("active");
             //$(this).removeClass("active");

            }
            );
    });

