var mapData = { 
  'map':[
      ['96','96','96','96','95','95','95','95','96','96','96','96','96','96','96','96','96','96','96','96','99','99','99'],
      ['96','96','99','99','99','98','99','99','99','99','99','99','99','99','99','99','99','99','99','99','99','96','95'],
      ['96','99','99', '1', '1','97', '2', '3', '4', '5', '5', '6', '6', '7','97','97', '8', '8','96','96','96','96','95'],
      ['96','99','12','97','97','97','97','97','97','97','97','97','97','97','97','11', '8', '8', '9','96','96','96','95'],
      ['95','99','12','22','23','97','27','97','44','46','47','97','52','52','97','97','97','97', '9','96','96','96','95'],
      ['95','99','13','97','23','97','28','97','97','97','97','97','53','53','57','58','59','97','10','96','96','96','95'],
      ['95','98','97','97','24','97','28','97','48','49','51','97','54','56','60','97','97','97','10','96','96','96','95'],
      ['95','99','14','97','25','97','29','97','48','50','51','97','55','56','60','97','61','62','96','96','96','96','95'],
      ['96','99','15','97','26','97','97','97','97','97','97','97','97','97','97','97','97','97','97','97','97','97','95'],
      ['96','99','16','97','97','97','30','30','97','45','45','97','65','65','97','63','63','63','96','96','96','96','95'],
      ['96','99','17','17','18','97','97','97','97','97','97','97','65','65','97','64','64','96','96','96','96','96','95'],
      ['99','99','19','97','97','97','97','31','31','97','97','97','97','97','97','97','40','40','40','96','96','96','95'],
      ['96','99','19','20','21','97','97','97','97','97','97','97','41','42','43','97','39','96','96','96','96','96','95'],
      ['96','99','99','99','99','32','33','33','97','34','35','35','36','36','37','38','39','96','96','96','96','96','95'],
      ['96','96','96','96','99','99','99','99','98','99','99','99','99','99','99','99','99','99','99','96','96','96','95'],
      ['96','96','96','96','96','96','95','95','95','95','95','96','96','96','96','96','96','96','99','99','99','99','99']
  ],        
  'mapLinks': [],
	'squares' : [],
	'buildingData': {
45:{
    'outside':'An abandoned cinema',
    'inside':'in a small family run cinema that specialises in cult and foreign films.'
	    +' The floor is sticky from spilt soft drinks and popcorn crunches beneath your feet.'},	
		99:{ 'outside':'A deep river', 'type':'river', 'noEnter':true, 'seeThrough':true },
		98:{ 'outside':'a bridge', 'inside':'on a bridge it is in disrepair', 'type':'bridge',
			 'autoJump':true, 'seeThrough':true },
                97:{ 'outside':'road','inside':'on the street','type':'road',
                           'autoJump':true, 'seeThrough':true },
                           96:{'outside':'field', 'inside':'in a rolling field', 'type':'field',
                             'autoJump':true, 'seeThrough':true },
                             95:{'outside':'guard camp',
'inside':'in a national guard campsite, you are given soup and a blanket as the gunfire rages around you.', 
                               'exit':true, 'autoJump':false, 'seeThrough':false, 'type':'camp' },
'def':{ 'outside':'a building', 'inside':'a nondescript building',
                             'noEnter':false, 'seeThrough':false, 'exit':false, 'autoJump':false,
                                 'type':'building'}
	},
	'end': function () { return ( this.square( this.player.location ) 
					           && this.buildingData[ this.square( this.player.location ) ]
							   && this.buildingData[ this.square( this.player.location ) ].exit ) }
                                                   	};

  
