jQuery(document).ready(function(){
	$('.accordion .head').click(function() {
		$(this).next().toggle('slow');
		return false;
	}).next().hide();
});


$(document).ready(function(){ 
		/*
		$('nav').accordion({ 
			header: 'span.toplevel',
			navigation: true, 
			autoHeight: false,
			collapsible: true,
			active:false

		});
		*/
		
		
	 }); 
	 
