jQuery UIによるドラッグ

今回はjquery-ui-1.8.14.custom.min.jsを読み込んでいます。
対応ブラウザ:IE,Firefox,Google Chrome,Safari
参考サイト:http://gihyo.jp/design/serial/01/jsdoit/0006

-jQuery-

$(function(){
$("#box02").draggable();
});

-CSS-

#box02{
width: 70px;
height: 70px;
border: 1px solid #333;
background: #369;
position: relative;
top: 0;
filter:alpha(opacity=60);  /*IE7以下用*/ 
-ms-filter: "alpha(opacity=60)";  /*IE8用*/
opacity: 0.6;
}