$(function() {	
		   
	$('li').children('ul').hide();
	
	$('li:has(ul)').children('a').click(function() {
																																																								
		//$(this).parent('li').children('ul').toggle();
		$(this).parent('li').children('ul').slideToggle();
		
		return false;		
		
	});	
	
	$('html').removeClass('js');
	
	$('a.on').parent('li').children('ul').show("slow,");
	
	$('a.on').parent('li').parent('ul').show("slow,");

});
