$(document).ready(function(){

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

$('#map').zoommap({
		// Width and Height of the Map
		width: '720px',
		height: '400px',
			
		//Misc Settings
		blankImage: '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 main hotel view',
		
		//Initial Region to be shown
		map: {
			id: 'main',
			image: 'images/hotel_base.jpg',
			data: 'popups/campus.html',
			maps: [
			{
				id: 'left',
				parent: 'main',
				image: 'images/left_base.jpg',
				data: 'popups/left.html',
				width: '240px',
				height: '180px',
				top: '60px',
				left: '70px'
				/* More maps can be nested
				maps : [ ]
				*/
			},
			{
				id: 'right',
				parent: 'main',
				image: 'images/right_base.jpg',
				data: 'popups/right.html',
				width: '360px',
				height: '400px',
				top: '0px',
				left: '360px'
				/* More maps can be nested
				maps : [ ]
				*/
			}
			]
		}
	});


});

