	jQuery().ready(function(){
		
		// first simple accordion with special markup
		jQuery('#menu1').accordion({
			header: 'div.menu1_title',
			active: false,
			alwaysOpen: false,
			animated: false,
			autoheight: false
		});
		
		// bind to change event of select to control first and seconds accordion
		// similar to tab's plugin triggerTab(), without an extra method
		var accordions = jQuery('#menu1');

		if (openMenu!="") jQuery(openMenu).show();
	});
