jQuery(document).ready(function(){
	
							
	jQuery('#agresivo').hide();
	jQuery('#equilibrado').hide();
	jQuery('#moderado').hide();
	jQuery('#conservador').show();
	jQuery('.tag_cons').css("font-weight", "bold");
	jQuery('.tag_mode, .tag_equi, .tag_agre').css("font-weight", "normal");
	
	
	jQuery('#slider').slider({ step: 2, max: 4,
		change: function(event, ui){
			switch(ui.value)
			{
			case 2:
			  	jQuery('#agresivo').hide();
			  	jQuery('#equilibrado').hide();
				jQuery('#moderado').show();
				jQuery('#conservador').hide();
				jQuery('.tag_mode').css("font-weight", "bold");
				jQuery('.tag_agre, .tag_equi, .tag_cons').css("font-weight", "normal");
			  break;
			case 4:
			  	jQuery('#agresivo').show();
			  	jQuery('#equilibrado').hide();
				jQuery('#moderado').hide();
				jQuery('#conservador').hide();
				jQuery('.tag_agre').css("font-weight", "bold");
				jQuery('.tag_cons, .tag_mode, .tag_equi').css("font-weight", "normal");
			  break;
			default:
				jQuery('#agresivo').hide();
			  	jQuery('#equilibrado').hide();
				jQuery('#moderado').hide();
				jQuery('#conservador').show();
				jQuery('.tag_cons').css("font-weight", "bold");
				jQuery('.tag_equi, .tag_mode, .tag_agre').css("font-weight", "normal");
			}
		}
	});
							
 });
