public function create()
 {
     $slideshow = new Slideshow();
     if ($this->method == "POST") {
         $slideshow->name = $_POST['name'];
         $slideshow->title = $_POST['title'];
         $slideshow->body = $_POST['body'];
         $slideshow->link = $_POST['link'];
         $slideshow->image = $_POST['image'];
         if ($slideshow->Save()) {
             Site::Flash("notice", "The slide has been created");
             Redirect("admin/slideshow");
         }
     }
     $this->assign("slideshow", $slideshow);
     $this->tinymce = true;
     $this->title = "New Slide";
     $this->render("slideshow/create.tpl");
 }