$extend( Page, {
	
	selectMember: function( value )
	{
		var $results = $( 'membersearch-results' ),
			data = value.getDataFromComment();
		
		Aurora.loadSparkle({
			path: '/Actions/QuickSearch-Members-Card',
			data: data
		}).then( (function( rtn ) {
		
			if ( rtn.success )
				$results.empty().set( 'html', rtn.html );
		
		}.bind( this )));
	}

});

whenReady(function(){

	//

});