// jQuery Functions

$(document).ready(function(){

	$('#nav .toggle').click(function() {
		$(this).siblings().slideToggle("fast");
	});

});
