function addGoodToOrder(href, show_elem_id, hide_elem_id){
   jQuery.ajax({url: href,
                success: switchElems(show_elem_id, hide_elem_id)
   });
}

function removeGoodFromOrder(href, show_elem_id, hide_elem_id)
{
   jQuery.ajax({url: href,
                success: switchElems(show_elem_id, hide_elem_id)
   });
}

function switchElems(show_id, remove_id)
{
  jQuery('#'+show_id).css('display', 'block');
  jQuery('#'+remove_id).css('display','none');
}
