<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="jquery-1.2.6.js" ></script>
<script type="text/javascript">
<!--
$(document).ready(function(){
$(".up").click(function(){
var pdiv = $(this).parent('div');
pdiv.insertBefore(pdiv.prev());
return false
});
$(".down").click(function(){
var pdiv = $(this).parent('div');
pdiv.insertAfter(pdiv.next());
return false
});
});
//-->
</script>
</head>
<body>
<table>
<tr>
<td id="leftcol" width="25%" height="400" align="center">
<div>Block 1 <a class="up" href="#">Up</a><a class="down" href="#">Down</a></div>
<div>Block 2 <a class="up" href="#">Up</a><a class="down" href="#">Down</a></div>
<div>Block 3 <a class="up" href="#">Up</a><a class="down" href="#">Down</a></div>
</td>
</tr>
</table>
</body>
</html>