$(document).ready(function(){

/* Show jQuery is running */
$('h1').css({textDecoration: 'underline'});

$('#map').zoommap({
		// Width and Height of the Map
		width: '813px',
		height: '371px',
			
		//Misc Settings
		blankImage: 'images/blank.gif',
		zoomDuration: 1000,
		bulletWidthOffset: '10px',
		bulletHeightOffset: '10px',
		
		//ids and classes
		zoomClass: 'zoomable',
		popupSelector: 'div.popup',
		popupCloseSelector: 'a.close',
		
		//Return to Parent Map Link
		showReturnLink: true,
		returnId: 'returnlink',
		returnText: 'Return to main map',
		
		//Initial Region to be shown
		map: {
			id: 'campus',
			image: 'zoommap/images/boston-area-map.jpg',
			data: 'zoommap/popups/boston-area-map.html',
			maps: [
			{
				id: 'boston-campus',
				parent: 'campus',
				image: 'zoommap/images/mgh-boston-campus.gif',
				data: 'zoommap/popups/boston-campus.html',
				width: '29px',
				height: '27px',
				top: '285px',
				left: '413px'

            /* More maps can be nested
				maps : [ ]
				*/
			}
			]
		}
	});

});
