$(document).ready(function () {
	
	
	var lisalohkoja = $("#sidebar-last .views-field-field-lisalohko-value .field-content").children().is(".field-item");
	if (lisalohkoja == false) {
			$("#sidebar-last .views-field-field-lisalohko-value .field-content").css({ backgroundColor:"#FCF7EB",marginBottom:"20px",padding:"10px"});
			//$("#sidebar-last .views-field-field-lisalohko-value .field-content").corner("round 10px");
	}
	
	var aaa = 0;
	var bbb = 0;
	$("#sidebar-last .views-field-field-lisalohko-value .field-content").each(function(i){		
		if ($(this).html() == "") {
			aaa++;
			$(this).remove();
		}
		bbb++;
	});
	if (aaa == bbb) {
		$("#block-views-lisalohkot-block_1").remove();
	}
	
});

