// Accordion variables for section sub-menus
// found in left rail area

<!--    
jQuery().ready(function(){	
	// applying the settings
	jQuery('#section_links').Accordion({
		active: 'h3.selected',
		header: 'h3.section_title',
		alwaysOpen: false,
		animated: true,
		showSpeed: 400,
		hideSpeed: 800
	});
	jQuery('#sublinks_02').Accordion({
		active: 'h4.selected',
		header: 'h4.section_title',
		alwaysOpen: false,
		animated: true,
		showSpeed: 400,
		hideSpeed: 800
	});
	jQuery('#sublinks_03').Accordion({
		active: 'h4.selected',
		header: 'h4.section_title',
		alwaysOpen: false,
		animated: true,
		showSpeed: 400,
		hideSpeed: 800
	});	
});
//-->
