$(document).ready(function(){

/* Show jQuery is running */
$('h1').css({textDecoration: 'underline'});

$('#map').zoommap({
		// Width and Height of the Map
		width: '580px',
		height: '656px',
			
		//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 campus map',
		
		//Initial Region to be shown
		map: {
			id: 'crxmap',
			image: 'images/map-crx.jpg',
			data: 'popups/data-crx.aspx',
			maps: [
			{
				id: 'stjohn',
				parent: 'overview',
				image: 'images/',
				data: 'popups/',
				width: '0px',
				height: '0px',
				top: '0px',
				left: '0px'
				/* More maps can be nested
				maps : [ ]
				*/
			}
			]
		}
	});

	$('#map2').zoommap({
	    // Width and Height of the Map
	    width: '580px',
	    height: '656px',

	    //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 campus map',

	    //Initial Region to be shown
	    map: {
	        id: 'stjohnmap',
	        image: 'images/map-stjohn.jpg',
	        data: 'popups/data-stjohn.aspx',
	        maps: [
			{
			    id: 'stjohn',
			    parent: 'overview',
			    image: 'images/',
			    data: 'popups/',
			    width: '0px',
			    height: '0px',
			    top: '0px',
			    left: '0px'
			    /* More maps can be nested
			    maps : [ ]
			    */
			}
			]
	    }
	});

	$('#map3').zoommap({
	    // Width and Height of the Map
	    width: '580px',
	    height: '656px',

	    //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 campus map',

	    //Initial Region to be shown
	    map: {
	        id: 'stthomasmap',
	        image: 'images/map-stthomas.jpg',
	        data: 'popups/data-stthomas.aspx',
	        maps: [
			{
			    id: 'stjohn',
			    parent: 'overview',
			    image: 'images/',
			    data: 'popups/',
			    width: '0px',
			    height: '0px',
			    top: '0px',
			    left: '0px'
			    /* More maps can be nested
			    maps : [ ]
			    */
			}
			]
	    }
	});

});

