$(document).ready(function(){

/* Show jQuery is running */

$('#map').zoommap({
		// Width and Height of the Map
		width: '560px',
		height: '500px',
			
		//Misc Settings
		blankImage: 'images/template/rendezvous/map/blank.gif',
		zoomDuration: 1000,
		bulletWidthOffset: '0px',
		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: 'images/template/rendezvous/map/MapBase.gif',
			data: 'popups/Map-RH.asp',
			maps: [
			{
		/*		id: 'quads',
				parent: 'campus',
				image: 'images/template/map/quads.png',
				data: 'popups/quads.asp',
				width: '200px',
				height: '232px',
				top: '18px',
				left: '176px' */
				/* More maps can be nested
				maps : [ ]
				*/
			}
			]
		}
	});


});

