$(document).ready(function(){

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

$('#map').zoommap({
		// Width and Height of the Map
		width: '660px',
		height: '328px',
			
		//Misc Settings
		blankImage: '/map/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 world map',
		
		//Initial Region to be shown
		map: {
			id: 'world',
			image: '/map/images/worldmap-new.jpg',
			data: '/map/popups/worldmap.html',
			maps: [
			{
				id: 'us',
				parent: 'world',
				image: '/map/images/usmap-new.jpg',
				data: '/map/popups/usmap.html',
				width: '148px',
				height: '74px',
				top: '64px',
				left: '21px'
				/* More maps can be nested
				maps : [ ]
				*/
			}
			]
		}
	});


});
