$(document).ready(function(){

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

$('#map').zoommap({
		// Width and Height of the Map
		width: '430px',
		height: '360px',
			
		//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: 'return to Victoria map',
		
		//Initial Region to be shown
		map: {
			id: 'victoria',
			image: 'images/map/vic_map.jpg',
			data: 'popups/victoria.html',
			maps: [
			{
				id: 'melbourne',
				parent: 'victoria',
				image: 'images/map/melbourne_map_dots.jpg',
				data: 'popups/melbourne.html',
				width: '50px',
				height: '50px',
				top: '160px',
				left: '183px'
				/* More maps can be nested
				maps : [ ]
				*/
			}
			]
		}
	});


});
