reqFormCheckType = function(){
	val = $('.typeRadio:checked').val();
	switch(val){
		case 'interpreting':
			$('tr.translation').hide();
			$('tr.interpreting').show();
			break;
		case 'translation':
		default:
			$('tr.translation').show();
			$('tr.interpreting').hide();
			break;
	}
}

$(document).ready(function(){
	$('.reqFormTypeRow').click(reqFormCheckType);
	$('.reqFormTypeRow').click();
});