$(document).ready(function(){



/* Show jQuery is running */

$('h1').css({textDecoration: 'underline'});



$('#jmap').zoommap({

		// Width and Height of the Map

		width: '686px',

		height: '520px',

			

		//Misc Settings

		blankImage: 'images/map_bg.png',

		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: 'Map',

			image: 'images/map_bg.png',

			data: 'includes/map.php'

		}

	});





});


