function exploreSelect( node , section ){ 
    var selection= $j('#explore_micro-' + section + '-select');
	$j.getJSON( '/service/public/explore_populate', { 'section':section, 'id':selection.val(), 'format':'json'} , exploreSelect_gotData );

}

function exploreSelect_gotData(responseText, statusText)  { 
	if ( responseText.status == 'success' ) {
	    affected= responseText.affected;
		$j('#explore_micro-' + affected + '-title').html( responseText[affected].title );
		$j('#explore_micro-' + affected + '-text').html( responseText[affected].body );
		$j('#explore_micro-' + affected + '-more').html( responseText[affected].more );
		$j('#explore_micro-' + affected + '-images').empty();
		for ( var i= 0; i < responseText[ affected ].images.length ; i++ ) {
			var image= responseText[ affected ].images[i];
			$j('#explore_micro-' + affected + '-images').append(image);
		}
		$j('#explore_micro-' + affected + '-images').append('<div class="clearboth"></div>');
	
	}
	else {
		message= 'There was an error';
		if ( responseText.status == 'error' ) {
			message= message + ', ' + responseText.error;
		}
		message= message + '.';
		alert(message);
	}
}
