$(document).ready(function() {
$(".up").click(function() {
var pdiv = $(this).parent('.b1');
pdiv.insertBefore(pdiv.prev());
$('.b1').each(function() {
$(this).find('.input0').val($(this).index());
$(this).removeClass('order-0 order-1 order-2 order-3 order-4');
$(this).addClass('order-' + $(this).index());
});
return false;
});
$(".down").click(function() {
var pdiv = $(this).parent('.b1');
pdiv.insertAfter(pdiv.next());
$('.b1').each(function() {
$(this).find('.input0').val($(this).index());
$(this).removeClass('order-0 order-1 order-2 order-3 order-4');
$(this).addClass('order-' + $(this).index());
});
return false;
});
});