$(document).ready(function(){
		
	//Combo estado
	$(".combo").click(function(){
		$(".select").show();
	});
	
	$(".select li").click(function(){								   
		$(".seta").val($(this).html());
		$(".combo").html($(this).html());
		$(".select").hide();
	});
	
	$(".select").click(function(){
		$(".select").hide();
	});
	
	//Checkbox
	$(".checkbox").click(function(){
		if($(this).parent().attr("class")=="full check-inativo"){
			$(this).parent().removeClass("check-inativo");
			$(this).parent().addClass("check-ativo");
		}else{
			$(this).parent().addClass("check-inativo");
			$(this).parent().removeClass("check-ativo");
		}
		
	});
	
	//Fecha Historias
	
	$(".hist1").click(function(){
		$("#tit-hist1").show();
		$("#text-hist1").show();
		
		$("#tit-hist2").hide();
		$("#text-hist2").hide();
		
		$("#tit-hist3").hide();
		$("#text-hist3").hide();
		
		$("#tit-hist4").hide();
		$("#text-hist4").hide();
	});	
	
	$(".hist2").click(function(){
		$("#tit-hist1").hide();
		$("#text-hist1").hide();
		
		$("#tit-hist2").show();
		$("#text-hist2").show();
		
		$("#tit-hist3").hide();
		$("#text-hist3").hide();
		
		$("#tit-hist4").hide();
		$("#text-hist4").hide();
	});
	
	$(".hist3").click(function(){
		$("#tit-hist1").hide();
		$("#text-hist1").hide();
		
		$("#tit-hist2").hide();
		$("#text-hist2").hide();
		
		$("#tit-hist3").show();
		$("#text-hist3").show();
		
		$("#tit-hist4").hide();
		$("#text-hist4").hide();
	});
	
	$(".hist4").click(function(){
		$("#tit-hist1").hide();
		$("#text-hist1").hide();
		
		$("#tit-hist2").hide();
		$("#text-hist2").hide();
		
		$("#tit-hist3").hide();
		$("#text-hist3").hide();
		
		$("#tit-hist4").show();
		$("#text-hist4").show();
	});
	
});
