jQuery(document).ready(function(){

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

jQuery('#map').zoommap({
		// Width and Height of the Map
		width: '700px',
		height: '700px',
			
		//Misc Settings
		blankImage: 'images/blank.gif',
		zoomDuration: 500,
		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 to main map',
		
		//Initial Region to be shown
		map: {
			id: 'tenby',
			title:'Tenby',
			image: 'images/map-all.jpg',
			data: 'popups/tenby.html',
			maps: [
			
			{
				id: 'se',
				title:'South East',
				parent: 'tenby',
				image: 'images/map-se.jpg',
				data: 'popups/zoom.html',
				width: '191px',
				height: '191px',
				top: '272px',
				left: '442px'
			
			}
	
			]
		}
	});


});

