
$(document).ready(function(){


 
$('#map').zoommap({
		// Width and Height of the Map
		width: '1000px',
		height: '550px',
			
		//Misc Settings
		blankImage: setup_base_uri+'lib_plugins/custommap/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 campus map',
		
		//Initial Region to be shown
		map: {
			id: 'campus',
			image: setup_base_uri+'lib_plugins/custommap/images/freehold.jpg',
			data: setup_base_uri+'lib_plugins/custommap/popups/freehold.php'
			/*maps: [
			{
				id: 'quads',
				parent: 'campus',
				image: '../lib_plugins/custommap/images/quads.png',
				data: '../lib_plugins/custommap/popups/quads.html',
				width: '200px',
				height: '232px',
				top: '18px',
				left: '176px'
				/* More maps can be nested
				maps : [ ]
				 
			}
			]*/
		}
	});




 
});

