var com;
if (!com) com = {};
else if (typeof com != "object")
    throw new Error("com already exists and is not an object");

if (!com.psuchesco) com.psuchesco = {};
else if (typeof com.psuchesco != "object")
    throw new Error("com/psuchesco already exists and is not an object");

if (!com.psuchesco.Pages) com.psuchesco.Pages = {};
else if (typeof com.psuchesco.Pages != "object")
    throw new Error("com/psuchesco/Pages already exists and is not an object");


com.psuchesco.Pages = {
    "/": "Home Page",
    "/default.aspx": "Home Page",
  "/about-the-chapter.aspx": "About the Chapter",
  "/membership.aspx": "Membership",
  "/events-activities.aspx": "Event & Activities",
  "/contact-us.aspx": "Contact Us",
  
  
  "/articles/2011-football-bus-trips.aspx": "Football Reservation Request Form",
  "/articles/new-york-city-bus-trip.aspx": "NYC Bus Trip",
  
  
  "/ticket-exchange.aspx": "Ticket Exchange",
  "/ticket-exchange/ticket-posting.aspx": "Ticket Exchange - Post",
  "/ticket-exchange/remove-ticket.aspx": "Ticket Exchange - Remove",
  
  
  "http://twitter.com/#!/psuchesco": "Twitter Home Page",
  "http://www.facebook.com/pages/chester-county-chapter-penn-state-alumni-association/116659645096025": "Facebook Home Page"
};

com.psuchesco.Pages.Lookup = function (path) {
    var return_val = (com.psuchesco.Pages[path] != undefined) ? com.psuchesco.Pages[path] : path;
    return return_val;
}
