$(document).ready(function(){
  
	
	$('#nav li > ul').each(function(i) {
        // Find this list's parent list item.
        var parent_li = $(this).parent('li');
		var toggled = false;
        // Temporarily remove the list from the
        // parent list item, wrap the remaining
        // text in an anchor, then reattach it.
        var sub_ul = $(this).remove();
        parent_li.wrapInner('<a/>').find('a').click(function() {
            // Make the anchor toggle the leaf display.
            sub_ul.toggle();
            if (toggled) {
            	toggled = false;
           		$(this).parent('li').find('span.nav-top-li').css('background-image','none');
           		$(this).parent('li.nav-second-li').css('background-color','#FFFFFF');
           		$(this).parent('li.nav-second-li').css('font-weight','normal');
            } else {
            	toggled = true;
            	$(this).parent('li').find('span.nav-top-li').css('background-image','url(/images/layout/color-gradient.gif)');
	            $(this).parent('li').find('span.nav-top-li').css('background-position','bottom');
    	        $(this).parent('li').find('span.nav-top-li').css('background-repeat','no-repeat');
    	        
    	        $(this).parent('li.nav-second-li').css('background-color','#E8F7FF');
    	        $(this).parent('li.nav-second-li').css('font-weight','bold');
            }

        });
        parent_li.append(sub_ul);
    });



      $('ul ul').hide();
    
});