$(document).ready(function() { 
	//$(".rad, .chck").hide();
    $(".rad, .chck").css({'visibility': 'hidden', 'position': 'absolute', 'left': '-500px'});				
	$("#form_example input").each(function(i){
		if($(this).is(':checked')) {
				//$(this).siblings('label').addClass("ativo");
		}
	});
	// Radios estilizados
	$(".box-radio label").click(function() {
			$(this).parent().children("label").removeClass("ativo");
			$(this).addClass("ativo");
			
	});			
	// Checkboxs estilizados
	$(".box-radio label").toggle(
		function() {
			$(this).siblings('input[type=checkbox]').attr("checked", "checked"); 
			//$(this).addClass("ativo");
		},		function() {
			$(this).siblings('input[type=checkbox]').attr("checked", ""); 
			//$(this).removeClass("ativo");
	});				
});

