$(document).ready(function(){

/* Show jQuery is running */

$('#map').zoommap({
		// Width and Height of the Map
		width: '454px',
		height: '214px',
			
		//Misc Settings
		blankImage: 'images/map/blank.gif',
		zoomDuration: 350,
		bulletWidthOffset: '100px',
		bulletHeightOffset: '100px',
		
		//ids and classes
		zoomClass: 'zoomable',
		popupSelector: 'div.popup',
		popupCloseSelector: 'a.close',
		
		//Return to Parent Map Link
		showReturnLink: true,
		returnId: 'returnlink',
		returnText: '←全国へ戻る',
		
		//Initial Region to be shown
		map: {
			id: 'campus',
			image: 'images/map/map.jpg',
			data: 'popups/campus.html',
			maps: [
			{
				id: 'quads',
				parent: 'campus',
				image: 'images/map/kantoC.jpg',
				data: 'popups/quads.html',
				width: '90px',
				height: '43px',
				top: '120px',
				left: '310px'
				/* More maps can be nested
				maps : [ ]
				*/
			}
			]
		}
	});


});

