  /*  
  
    Any additions to this functionality area should be put here..
  
  */

  //Function to get a comma seperated list for the IDs of each item in a given list
   function getDisplayOrderForList(listName) {
      var ser = Sortable.serialize(listName)
      eval("ser = ser.replace(/&" + listName + "\\[\\]=/g,',').replace(/" + listName + "\\[\\]=/g,'');");
      return ser;
   }

