$(document).ready(function(){

/* Show jQuery is running */


$('#commensal-map').zoommap({
		// Width and Height of the Map
		width: '803px',
		height: '744px',
			
		//Misc Settings
		blankImage: '/media/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 beginning',
		
		//Initial Region to be shown
		map: {
			id: 'campus',
			image: '/media/images/education/local_outreach/causes-of-commensalism/commensal-export-1.jpg',
			data: 'popups/causes-of-commensalism',
			maps: [
			// {
			// 	id: 'quads',
			// 	parent: 'campus',
			// 	image: '/media/images/quads.png',
			// 	data: '/media/popups/quads.html',
			// 	width: '775px',
			// 	height: '716px',
			// 	top: '0px',
			// 	left: '0px'
			// 	/* More maps can be nested
			// 	maps : [ ]
			// 	*/
			// }
			]
		}
	});


});

