$(document).ready(function(){
	$('.zoom').colorbox();
	$("#curso").change(function(){
		if(($("#curso").val()>='5') && ($("#curso").val()<='8')){
			$("#div_ano").show();
				$("#div_semestre").hide();
		}
		else{
			$("#div_semestre").show();
			$("#div_ano").hide();
		}
	});
});
