$(document).ready(function(){
	//alert('test');
	$('.wp-caption-text').each(function(){
		$(this).html($(this).html().replace(/ - /, "<br/>"));
	});
});