	function simpleLog(message) {
		jQuery('<div>' + message + '</div>').appendTo('#log');
	}

	jQuery().ready(function(){
		// simple Accordion
		jQuery('#list1').Accordion({
			active: false, 
			alwaysOpen: false,
			selectedClass: "selected"
		});
		
				
		// 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('#list1').activate( this.selectedIndex-1 );
		});
	});
