I have a div with this class :
.news{ width:710px; float:left; border-bottom:1px #000000 solid; font-weight:bold; display:none; }
To hide the div
div
$('.news').hide();
or
$('.news').css('display','none');
and to show the div:
$('.news').show();
$('.news').css('display','block');