// ### Part of the [Rosy Framework](http://github.com/ff0000/rosy)
/* page.js */

// ## Local Namespace

// Default Page functionality for the "RuneScape" website.
// New pages will try to load a specialized class ("Home" for instance),
// if one cannot be found, the site will instantiate this Page by default

// Site-specifc namespace
var RuneScape = RuneScape || {};

RuneScape.Page = (function () {
 
 return RuneScape.Class.extend({
  
  // Over-writeable vars, ex: new Page({x:10});
  vars : {
   // RuneScape for inheriting and overwriting vars
   x : 1
  },
  
  // Default page level functionality
  init : function () {}
  
 });
}.call(RuneScape));

