/**
 * XenTan site enhancement - inventory
 * 
 * @author Jim Tunstall <jtunstall@doc-net.com>
 * @copyright Copyright &copy; 2009, Doctor Net Limited
 * @package XenTan
 */
$(document).ready(function() {
   if ($("#inventory_ingredients").length > 0) { 
      $('#inventory_ingredients').hide();
      $('#show_ingredients').show();
   
      $('#show_ingredients').click(function(){
         $('#show_ingredients').hide();
         $('#inventory_ingredients').show();
      return false;
   });
}
});
