
$(document).ready(function(){
   // Your code here
	$('.menu').children().click(function() {
	  //$(this).children('ul').toggle('fast', function() {
	    // Animation complete.
	  //});
	});

	$('.menu').children().children().children().click(function() {
	  $(this).parent().parent().children('ul').toggle('fast', function() {
	    // Animation complete.
	  });
	});

 });
