$(document).ready(function(){

/* Show jQuery is running */
$('h1').css({textDecoration: 'underline'});

$('#map').zoommap({
		// Width and Height of the Map
		width: '640px',
		height: '400px',
			
		//Misc Settings
		blankImage: 'templates/nhijoomla1/images/blank.gif',
		zoomDuration: 200,
		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: 'Go Back',
		
		//Initial Region to be shown
		map: {
			id: 'campus',
			image: 'templates/nhijoomla1/images/nhi_imagemap_v2.jpg',
			data: 'templates/nhijoomla1/popups/coverage.html',
//			maps: [
//			{
//				id: 'quads',
//				parent: 'campus',
//				image: 'templates/nhijoomla1/images/nhi_imagemap_v1.jpg',
//				data: 'templates/nhijoomla1/popups/quads.html',
//				width: '20px',
//				height: '20px',
//				top: '5px',
//				left: '200px'
				/* More maps can be nested
				maps : [ ]
				*/
//			}
//			]
		}
	});


});

