So I start with items 1-4:
Lorem
You could do this two ways: You could add another class for the display: none elements and make them invisible via css, or you could find out the css property via jquery
Lorem
Ipsum
.someDiv{
display: block;
}
.hidden{
display: none;
}
$(".someDiv").each(function(){
if($(this).hasClass("hidden")){
$(this).show();
} else {
$(this).hide();
};
$(".someDiv:visible").each(function(){
if($(this).hasClass("regular")){
$(this).show();
} else {
$(this).hide();
}
});