$(document).ready(function(){

/* Show jQuery is running */


$('#baboon-dreams-diagram').zoommap({
		// Width and Height of the Map
		width: '882px',
		height: '631px',
			
		//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 natural state',
		
		//Initial Region to be shown
		map: {
			id: 'dreams',
			image: '/media/images/education/local_outreach/baboon-dreams/test1.jpg',
			data: 'popups/causes-of-commensalism',
			maps: [
			{
				id: 'outcomes',
				parent: 'dreams',
				image: '/media/images/education/local_outreach/baboon-dreams/test2.jpg',
				data: '/media/popups/quads.html',
				width: '150px',
				height: '50px',
				top: '530px',
				left: '270px'
				/* More maps can be nested
				maps : [ ]
				*/
			}
			]
		}
	});


});

