$(document).ready(function() {

$(".freebox").each(function(){
	editable1 = $(this).children('.editable h3').text(); // does not work because of the flash replacement
	var editable2 = $(this).children('.editable').children('div').text();
	//alert(editable1);
	if(editable2==null || editable2==""){
		$(this).remove();
	}
	else{
		$(this).show();
	}
});

  
});

