$(document).ready(function(){

/* Show jQuery is running */

$('#map').zoommap({
		// Width and Height of the Map
		width: '479px',
		height: '450px',
			
		//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: ' ',
		returnText: ' ',
		
		//Initial Region to be shown
		map: {
			id: 'carparks',
			image: 'images/carparks.jpg',
			data: 'scripts/popups/carparks.html',
			}
	});

$('#terminal').zoommap({
		// Width and Height of the Map
		width: '479px',
		height: '227px',
			
		//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: ' ',
		returnText: ' ',
		
		//Initial Region to be shown
		map: {
			id: 'carparks',
			image: 'images/terminal.jpg',
			data: 'scripts/popups/terminal.html',
			}
	});


});
