$(document).ready(function(){

/* Show jQuery is running */
/*$('h1').css({textDecoration: 'underline'});*/

$('#map').zoommap({
		// Width and Height of the Map
		width: '694px',
		height: '325px',
			
		//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 full map',
		
		//Initial Region to be shown
		map: {
			id: 'world',
			image: '/images/world-map.png',
			data: '/popups/world.aspx',
			maps: [
			{
				id: 'euro',
				parent: 'world',
				image: '/images/euro-map.png',
				data: '/popups/euro.aspx',
				width: '110px',
				height: '55px',
				top: '87px',
				left: '281px'
				/* More maps can be nested
				maps : [ ]
				*/
				
			},
			
			{
				id: 'asia',
				parent: 'world',
				image: '/images/asia-map.png',
				data: '/popups/asia.aspx',
				width: '110px',
				height: '55px',
				top: '160px',
				left: '425px'
				/* More maps can be nested
				maps : [ ]
				*/
				
			},
			
			{
				id: 'middle-east',
				parent: 'world',
				image: '/images/mid-east-map.png',
				data: '/popups/middle-east.aspx',
				width: '110px',
				height: '55px',
				top: '115px',
				left: '320px'
				/* More maps can be nested
				maps : [ ]
				*/
				
			}
			
			
			
			
			]
		}
	});


});

