$(document).ready(function(){

/* Show jQuery is running */

$('#map').zoommap({
		// Width and Height of the Map
		width: '542px',
		height: '473px',
			
		//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: 'Torna a Cartina',
		
		//Initial Region to be shown
		map: {
			id: 'musei',
			image: '../images/mappaLocali.png'
			/*maps: [
			{
				id: 'quads',
				parent: 'musei',
				image: '../images/quads.png',
				data: 'popups/quads.html',
				width: '576px',
				height: '725px',
				top: '400px',
				left: '20px'
				 
				
			}
			]*/
		}
	});


});

