$(document).ready(function(){

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

$('#map').zoommap({
		// Width and Height of the Map
		width: '940px',
		height: '500px',
			
		//Misc Settings
		blankImage: 'http://www.bruceshaw.com/themes/bruceshaw/i/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: '< back to main map',
		
		//Initial Region to be shown
		map: {
			id: 'world',
			image: 'http://www.bruceshaw.com/themes/bruceshaw/i/world.png',
			data: 'http://www.bruceshaw.com/themes/bruceshaw/popups/world.html',
			maps: [
			{
				id: 'europe',
				parent: 'world',
				image: 'http://www.bruceshaw.com/themes/bruceshaw/i/europe.png',
				data: 'http://www.bruceshaw.com/themes/bruceshaw/popups/europe.html',
				width: '76px',
				height: '40px',
				top: '143px',
				left: '406px',
				
				//maps : []
				
			
				
				
			},
			{
				id: 'middleeast',
				parent: 'world',
				image: 'http://www.bruceshaw.com/themes/bruceshaw/i/middleeast.png',
				data: 'http://www.bruceshaw.com/themes/bruceshaw/popups/middleeast.html',
				width: '76px',
				height: '40px',
				top: '225px',
				left: '530px',
				
				//maps : []
				
			
				
				
			}
			
			
			
			
			]
			
	
			
			
			
			
			
		}
	});


});

