

$('#zoommap').zoommap({
		// Width and Height of the Map
		width: '700px',
		height: '525px',
			
		//Misc Settings
		blankImage: '/import/default/js/zoommap/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 Facility Map &raquo;',
		
		//Initial Region to be shown
		map: {
			id: 'campus',
			image: '/import/default/js/zoommap/large.jpg',
			data: '/import/default/js/zoommap/popups/campus.html',
			maps: [
			{
				id: 'quads',
				parent: 'campus',
				image: '/import/default/js/zoommap/kart-track.jpg',
				data: '/import/default/js/zoommap/popups/kart-track.html',
				width: '92px',
				height: '70px',
				top: '170px',
				left: '514px'
				/* More maps can be nested
				maps : [ ]
				*/
			},
			{
				id: 'race-control',
				parent: 'campus',
				image: '/import/default/js/zoommap/race-control.jpg',
				data: '/import/default/js/zoommap/popups/race-control.html',
				width: '92px',
				height: '70px',
				top: '231px',
				left: '356px'
				/* More maps can be nested
				maps : [ ]
				*/
			},
			{
				id: 'clubhouse',
				parent: 'campus',
				image: '/import/default/js/zoommap/clubhouse.jpg',
				data: '/import/default/js/zoommap/popups/clubhouse.html',
				width: '92px',
				height: '70px',
				top: '139px',
				left: '413px'
				/* More maps can be nested
				maps : [ ]
				*/
			},
			{
				id: 'autocross',
				parent: 'campus',
				image: '/import/default/js/zoommap/autocross.jpg',
				data: '/import/default/js/zoommap/popups/autocross.html',
				width: '92px',
				height: '70px',
				top: '96px',
				left: '522px'
				/* More maps can be nested
				maps : [ ]
				*/
			}
			]
		}
	});

