 $(document).ready(function(){ 
if ($("#infoContent").text() != null) {
	if($("#infoContent span").html() == "") { 
		$("#infoContent").remove();
	}
}
if ($(".offers") != null){
if($.trim($(".offers").text()) == "") { 
  	$(".offers").remove();
	}
}

if ($("#package1") != null){
if($.trim($("#package1 .packageInfo").text()) == "") { 
  	$("#package1").remove();
	}
}
if ($("#package2") != null){
if($.trim($("#package2 .packageInfo").text()) == "") { 
  	$("#package2").remove();
	}
}
if ($("#package3") != null){
if($.trim($("#package3 .packageInfo").text()) == "") { 
  	$("#package3").remove();
	}
}
if ($(".infoBox") != null){
	if($.trim($(".infoBox").text()) == "") { 
  	$(".infoBox").remove();
	}
}

if ($("#infoBoxGeneric") != null){
	if($.trim($("#infoBoxGeneric").text()) == "") { 
  	$("#infoBoxGeneric").remove();
	}
}

if ($(".redBox") != null){
	if($.trim($(".redBox").text()) == "") { 
  	$(".redBox").remove();
	}
}

if ($(".roundedBox") != null){
	if($.trim($(".roundedBox").text()) == "") { 
  	$(".roundedBox").remove();
	}
}

if ($(".calendarImage").text() != null){
	if($.trim($(".calendarImage").text()) == "") { 
		if($(".calendarImage").children().html() ==null) { 
			$(".calendarImage").remove();
		}
	}
}
});
    