(function() {
  var __hasProp = Object.prototype.hasOwnProperty, __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor; child.__super__ = parent.prototype; return child; };

  Home.Routers.Router = (function() {

    __extends(Router, Backbone.Router);

    function Router() {
      Router.__super__.constructor.apply(this, arguments);
    }

    Router.prototype.routes = {
      "": "home",
      "about": "about",
      "contact": "contact",
      "projects": "projects",
      "development": "development"
    };

    Router.prototype.home = function() {
      return new Home.Views.Index({
        el: $("body").unbind(),
        path: ""
      }).render();
    };

    Router.prototype.about = function() {
      return new Home.Views.Index({
        el: $("body").unbind(),
        path: "about"
      }).render();
    };

    Router.prototype.contact = function() {
      return new Home.Views.Index({
        el: $("body").unbind(),
        path: "contact"
      }).render();
    };

    Router.prototype.projects = function() {
      return new Home.Views.Index({
        el: $("body").unbind(),
        path: "projects"
      }).render();
    };

    Router.prototype.development = function() {
      return new Home.Views.Index({
        el: $("body").unbind(),
        path: "development"
      }).render();
    };

    return Router;

  })();

}).call(this);

