/*
 * Contains the functionality to turn menus into accordian menus
 */
	jQuery().ready(function(){

    // Main navigation menu
		jQuery('.navigation').accordion({
			active: false,
			header: '.head',
			navigation: true,
			event: 'mouseover',
			fillSpace: false,
			animated: 'easeslide'
		});

	});

 


