jQuery(function($){
	// on load
	if($('#source').val() == 'other') $('#source_other').show();
	
	// on change
	$('#source').bind('change', function(evt) {
		if($(this).val() == 'other') $('#source_other').show();
		else $('#source_other').hide();
		
	});
	
	// on load
	if($('#client_Intermediary:checked').length == 1) $('#client_extra').show();
	
	// on change
	$('input[name=client]').click(function(evt) {
		if($(this).val() == 'intermediary') $('#client_extra').css('display', 'block');
		else $('#client_extra').hide();
	});
	

});
