アニメーション
複数のアニメーションを同時に行う

$('div#demo').animate({width:'150px',height:'150px'},
                      {queue:false,duration:'slow'})
             .animate({fontSize:'20pt'},'slow');

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

div#demo{
float=left; width: 100px; height: 100px;
padding:3px;
border:1px solid #000;
background-color:#cf9;
}


実行例 
領域と文字を順に拡大する

変更前のhtml
<div id="demo">領域と文字を順に拡大する</div>

別々に拡大する方法はこの前に記述している