function resize_captions( containerSelector, captionSelector ){
	
	$_( containerSelector ).each(function(){
		//alert( $_(this).find('img').width() );
		
		
		$_(this).find(captionSelector).css('width', $_(this).find('img').width() );
	});
	
}