
//Jquery para o checkbox do forulario de curriculo
$().ready(function(){
	$('input[name = niv_idioma_en]').click(function(){
		$('.ingles').attr('checked', 'checked');
	});
	$('input[name = niv_idioma_esp]').click(function(){
		$('.espanhol').attr('checked', 'checked');
	});
	$('input[name = niv_idioma_pt]').click(function(){
		$('.port').attr('checked', 'checked');
	});
	$('input[name = niv_idioma_fra]').click(function(){
		$('.frances').attr('checked', 'checked');
	});
	$('input[name = niv_idioma_ale]').click(function(){
		$('.alemao').attr('checked', 'checked');
	});
});	