// This hashmap contains all the nicknames of buildings with their cooresponding building name.
// If you need to add more, it's no problem, just set a new entry in the map
var hashMap = {
		initialize : function() {this.length = 0;},
		set : function(foo,bar) {this[foo] = bar; this[this.length] = foo; this.length++;},
		get : function(foo) {return this[foo];}
	}
	hashMap.initialize();
	hashMap.set('GBJ', 'Burke Johnston Student Center');
	hashMap.set('Johnston Student Center', 'Burke Johnston Student Center');
	hashMap.set('Lane Stadium', 'Lane Stadium / Worsham Field');
	hashMap.set('Worsham Field', 'Lane Stadium / Worsham Field');
	hashMap.set('Football Stadium', 'Lane Stadium / Worsham Field');
	hashMap.set('AJ', 'Ambler Johnston');
	hashMap.set('Cassell', 'Cassell Coliseum');
	hashMap.set('Cranwell', 'Cranwell International Center');
	hashMap.set('Donaldson Brown Hotel', 'Donaldson Brown Hotel and Conference Center');
	hashMap.set('Hotel', 'Donaldson Brown Hotel and Conference Center');
	hashMap.set('Fralin' , 'Fralin Biotechnology Center');
	hashMap.set('Information Center', 'Information/Visitors Center');
	hashMap.set('Vistor Center', 'Information/Visitors Center');
	hashMap.set('McComas Gym', 'McComas');
	hashMap.set('Merryman', 'Merryman Athletic Facility');
	hashMap.set('NWS', 'NWS Balloon Launching Facility');
	hashMap.set('National Weather Service', 'Natl. Weather Ser.');
	hashMap.set('New Res', 'New Residence East');
	hashMap.set('New Residence East', 'New Residence East');
	hashMap.set('New Res East', 'New Residence East');
	hashMap.set('O Shag' , 'O Shaughnessy');
	hashMap.set('Parking Services', 'Parking Services Building');
	hashMap.set('Peddrew', 'Peddrew Yates');
	hashMap.set('Yates', 'Peddrew Yates');
	hashMap.set('Slusher Tower', 'Slusher');
	hashMap.set('Squires', 'Squire Student Center');
	hashMap.set('Student Services', 'Student Services Building');
	hashMap.set('Bookstore', 'University Bookstore');
	hashMap.set('Library', 'Newman Library');
	hashMap.set('VIAM', 'VIA Med Sch');
	hashMap.set('Medical School', 'VIA Med Sch');
	hashMap.set('Med School', 'VIA Med Sch');
	hashMap.set('War', 'War Memorial Gym');
	hashMap.set('Chapel', 'War Memorial Chapel');
	hashMap.set('Church', 'War Memorial Chapel');
	hashMap.set('East Eggleston', 'Eggleston');
	hashMap.set('East Egg', 'Eggleston');
	hashMap.set('West Eggleston', 'Eggleston');
	hashMap.set('West Egg', 'Eggleston');
	hashMap.set('D 2', 'Dietrick');
	hashMap.set('West End', 'Cochrane');
	hashMap.set('Hokie Grill', 'Owens');
	hashMap.set('Deets', 'Dietrick');
	hashMap.set('Deets Place', 'Dietrick');
	hashMap.set('General Store', 'Dietrick');
	hashMap.set('Bridge', 'Torgersen');