$(document).ready(function(){

$('#map').zoommap({
		// Width and Height of the Map
		width: '673px',
		height: '481px',
			
		//Misc Settings
		blankImage: '/imap/images/blank.gif',
		zoomDuration: 500,
		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: '/imap/images/lesley-campus-map.jpg',
			data: '/imap/popups/campus.html',
			maps: [
			{
				id: 'brattle',
				parent: 'campus',
				image: '/imap/images/brattle-campus.jpg',
				data: '/imap/popups/brattle.html',
				width: '54px',
				height: '54px',
				top: '132px',
				left: '92px'
				/* More maps can be nested
				maps : [ ]
				*/
			},

            {
				id: 'porter',
				parent: 'campus',
				image: '/imap/images/porter-campus.jpg',
				data: '/imap/popups/porter.html',
				width: '54px',
				height: '54px',
				top: '39px',
				left: '141px'
				/* More maps can be nested
				maps : [ ]
				*/
			},

            {
				id: 'quad',
				parent: 'campus',
				image: '/imap/images/quad-campus.jpg',
				data: '/imap/popups/quads.html',
				width: '54px',
				height: '55px',
				top: '120px',
				left: '168px'
				/* More maps can be nested
				maps : [ ]
				*/
			},

            {
				id: 'aib',
				parent: 'campus',
				image: '/imap/images/aib-campus.jpg',
				data: '/imap/popups/aib.html',
				width: '54px',
				height: '55px',
				top: '373px',
				left: '249px'
				/* More maps can be nested
				maps : [ ]
				*/
			}

			]
		}
	});


});
