I have a div with this class :
.news{ width:710px; float:left; border-bottom:1px #000000 solid; font-weight:bold; display:none; }
jQuery provides you with:
$(".news").hide(); $(".news").show();
You can then easily show and hide the element(s).