$(document).ready(function(){

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

$('#map').zoommap({
		// Width and Height of the Map
		width: '614px',
		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 indonesia map',
		
		//Initial Region to be shown
		map: {
			id: 'indonesia',
			image: '/images/indonesia.gif',
			data: '/popups/campus.html',
			maps: [
			{
				id: 'quads',
				parent: 'indonesia',
				image: '/images/lombok.gif',
				data: '/popups/quads.html',
				width: '72px',
				height: '47px',
				top: '263px',
				left: '264px'
				/* More maps can be nested
				maps : [ ]
				*/
			}
			]
		}
	});


});

