アニメーション
要素をゆっくり拡大させながら表示する

$('div#content2').show('slow');

※CSSプロパティで以下の様に設定

div.square{
float=left;
width: 150px;
height: 150px;
margin:3px;
padding:3px;
border:1px solid #000;
background-color:#cf9;
}
div#content2{
display:none;
background-color:#fc9;
}


実行例
表示済みの要素(1)
show()で表示した要素
表示済みの要素(2)



変更前のhtml
<div class="square">表示済みの要素(1)</div>
<div id="content2" class="square">show()で表示した要素</div>
<div class="square">表示済みの要素(2)</div>

オプション 'slow'、'normal'、'fast'、5000(5秒)