jQuery(document).ready(function(){	
	// applying the settings
	jQuery('#theMenu_acc').Accordion({
		active: 'span.selected',
		header: 'span.head',
		alwaysOpen: false,
		animated: true,
		showSpeed: 400,
		hideSpeed: 800
	});
	
	jQuery('#shopby').Accordion({
		active: 'h1.selected',
		header: 'h1.title',
		alwaysOpen: false,
		animated: true,
		showSpeed: 400,
		hideSpeed: 800
	});
});	

