function openTab(id) {
        jQuery('#memberList').accordion('activate', this.selectedIndex = id);
			}


jQuery().ready(function(){
	
	jQuery('#memberList').accordion({
			// active: -1,
			autoheight: false
		});

	// select box
	jQuery('#switch select').change(function(){
			jQuery('#memberList').accordion('activate', this.selectedIndex-1 );
		});
	
	// open all links with rel=external in a new browser window
	jQuery('a[rel*=external]').click( function() {
			window.open(this.href);
			return false;
		});


});
	
	
	

/*

// Links
jQuery('.openTab').click(function() {
	jQuery('#memberList').accordion('activate', this.selectedIndex = eval(jQuery('.openTab').attr('rel')));
	alert((jQuery('.openTab').attr('rel')))
	});

*/