$(document).ready(function(){
	$('.nav ul.children').hide();
	
	$('.nav li:has(.children) > a').toggle(
		function(e)
		{
			$(this).next('.children').slideDown();
		},
		function(e)
		{
			$(this).next('.children').slideUp();
		});
});
