jQuery().ready(function(){
	jQuery('#othernavi').Accordion({
		active: false,
		header: '.head',
		navigation: true,
		autoheight: false,
		alwaysOpen: true,
		animated: false
	});

	// bind to change event of select to control first and seconds accordion
	// similar to tab's plugin triggerTab(), without an extra method
	jQuery('#switch select').change(function() {
		jQuery('#othernavi').activate( this.selectedIndex-1 );
	});
	jQuery('#close').click(function() {
		jQuery('#othernavi').activate(-1);
	});
	jQuery('#switch2').change(function() {
		jQuery('#othernavi').activate(this.value);
	});
});