<?php
include_once("includes/base.inc");

$page = new Page("/");
$page->event = "recipe-builder";
$page->name = "Recipe Builder";
$page->title = "Recipe Builder";
$page->body = "<h2>Receipe Builder</h2>";
$page->body .= "<p>The Recipe Builder constructs structured recipe descriptions that can be used to identify the nutritional content of a recipe and produces documents that can be published elsewhere on the semantic web.</p>";
$page->body .= "<h4>Ingredients:</h4>";
$page->body .= "<span><input type=\"text\"/><input type=\"text\"/><select></select></span>";

$startingOptions =
array("http://semanticdiet.com/data/usda/nndsr/23/nutrients/208",
      "http://semanticdiet.com/data/usda/nndsr/23/nutrients/204",
      "http://semanticdiet.com/data/usda/nndsr/23/nutrients/205",   
      "http://semanticdiet.com/data/usda/nndsr/23/nutrients/203");

set_time_limit(0);

$page->addScript("js/jquery-1.4.2.min.js","text/javascript");
$page->addScript("js/jquery-ui-1.8.6.custom.min.js","text/javascript");
$page->addScript("js/finder.js","text/javascript");
$page->addStylesheet("themes/default/finder.css");

$currentTheme->render($page);

?>
