
<style type="text/css">
<!--
ul{list-style:none;margin:0;padding:0;}
ul li{vertical-align:bottom;}
.img_box { width:900px; height:150px; margin:0px auto;}
.img_box li{ width:200px; float:left; height:135px; border:1px solid #eee; padding:3px; margin-left:8px;}
body {
margin-top: 165px;
}
-->
</style>
<script type="text/javascript" src="js/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="js/jump.js"></script>
<script type="text/javascript">
$(function(){
$("#ul img").each(function(k,img){
new JumpObj(img,10);
//第一个参数代表元素对象
//第二个参数代表抖动幅度
});
});
</script>