/*
 * Accordian Effects
 *
 * Copyright © 2009 Leonard Chan
 * All rights reserved.
*/
		
	jQuery().ready(function(){

		// second simple accordion with special markup
		jQuery('#navigation').accordion({
			active: ".current",
			header: '.head',
            animated:false,
            autoHeight:true,
            fillSpace: false,
            navigation:true
		});
		$("#navigation a").click(function(event){ event.stopPropagation(); });
	});
	
