/*
 * 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',
			navigation: true,
			event: 'mouseover',
			fillSpace: true
		});
		
	});
	
		