$(function(){
	$('#preferred_stores .primary_radio').each(function(){
		$(this).click(function(){
			// Reset all of the primary selectors
			$('#preferred_stores .store_selector label').each(function(){
				$(this).html('Make Primary').removeClass('primary');
			});
			$(this).next().html('Primary Store').addClass('primary');
		});
	});
});