
$(document).ready(function(){

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

$('#map').zoommap({
		// Width and Height of the Map
		width: '500px',
		height: '355px',
			
		//Misc Settings
		//blankImage: 'images/blank.gif',
		blankImage: '../img/mapa/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: 'volver al mapa',
		
		//Initial Region to be shown
		
		map: {
			id: 'delegaciones',
			image: '../img/mapa/mapa-delegaciones.gif',
			data: 'popups/mapa-delegaciones.html',
			maps:[]
/*			
			maps: [
			{
				id: 'madrid',
				parent: 'delegaciones',
				image: '../img/mapa/madrid.gif',
				data: 'popups/madrid.html',
				width: '17px',
				height: '11px',
				top: '131px',
				left: '213px'
				// More maps can be nested
				//maps : [ ]
			}
			]
*/			
		}
	});


});

