$(document).ready(function(){
  $(".down, .up").click(function(){
    $.ajax({
      type: "post",
      url: $(this).attr("href"),
      data: "id=" + $(this).attr("id"),
      success: function(returnText){
        if(returnText.indexOf("error") > -1){
          $.fn.colorbox({html:returnText});
        }
        else{
          document.location = returnText;
        }
      },
      error: function(){
        $.fn.colorbox({html:"There was an error while moving your Menu Item, please try again."});
      }
    });
    return false;
  });
});