$(document).ready(function(){


$('#map_ma').zoommap({
		// Width and Height of the Map
		width: '619px',
		height: '395px',
			
		//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: 'Back',
		
		//Initial Region to be shown
		map: {
			id: 'campus',
			image: '/images/mondo.gif',
			data: '/php/c_retemondo_ma.php',
			maps: [
			{
				id: 'quads',
				parent: 'campus',
				image: '/images/europa.gif',
				data: '/php/c_reteeuropa_ma.php',
				width: '130px',
				height: '115px',
				top: '65px',
				left: '230px'
				/* More maps can be nested
				maps : [ ]
				*/
			}
			]
		}
	});


$('#italia_ma').zoommap({
		// Width and Height of the Map
		width: '286px',
		height: '357px',
			
		//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: 'Back',
		
		//Initial Region to be shown
		map: {
			id: 'campus',
			image: '/images/italia.gif',
			data: '/php/c_reteitalia_ma.php'
		}
	});



$('#map_pro').zoommap({
		// Width and Height of the Map
		width: '619px',
		height: '395px',
			
		//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: 'Back',
		
		//Initial Region to be shown
		map: {
			id: 'campus',
			image: '/images/mondo_pro.gif',
			data: '/php/c_retemondo_pro.php',
			maps: [
			{
				id: 'quads',
				parent: 'campus',
				image: '/images/europa_pro.gif',
				data: '/php/c_reteeuropa_pro.php',
				width: '130px',
				height: '115px',
				top: '65px',
				left: '230px'
				/* More maps can be nested
				maps : [ ]
				*/
			}
			]
		}
	});


$('#italia_pro').zoommap({
		// Width and Height of the Map
		width: '286px',
		height: '357px',
			
		//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: 'Back',
		
		//Initial Region to be shown
		map: {
			id: 'campus',
			image: '/images/italia_pro.gif',
			data: '/php/c_reteitalia_pro.php'
		}
	});


});


