// JavaScript Document
jQuery().ready(function(){
		// first simple accordion with special markup
		jQuery('#vertical_container').accordion({
			header: 'h1.accordion_toggle',
			active: false,
			alwaysOpen: false,
			animated: 'slide',
			active: '.active',
			autoheight: false
		});
	});