$(document).ready(function() {
   $("#add").click(function() {
      $("#recipelist  option:selected").appendTo("#related_recipe");
      $("#related_recipe").sortOptions();
      $("#related_recipe option").attr("selected", true);
   });
   //If you want to move all item from fromListBox to toListBox
   $("#addAll").click(function() {
      $("#recipelist option").appendTo("#related_recipe");
      $("#related_recipe").sortOptions();
      $("#related_recipe option").attr("selected", true);
   });
   //If you want to remove selected item from toListBox to fromListBox
   $("#remove").click(function() {
      $("#related_recipe option:selected").appendTo("#recipelist");
      $("#recipelist").sortOptions();
   });
   //If you want to remove all items from toListBox to fromListBox
   $("#removeAll").click(function() {
      $("#related_recipe option").appendTo("#recipelist");
      $("#recipelist").sortOptions();
   });
   $("form").submit(function() {
      $('#msg').html('Exporting...');
      $('#msg1').html('Exporting...');
	 return true;
   });
   $('.multselect').livequery('click', function(event) {
      $('#msg').html(null);
      $('#msg1').html(null);
   });
});
