$(document).ready(function(){

/* Show jQuery is running */
$('h1').css({textDecoration: 'underline'});

$('#map').zoommap({
		// Width and Height of the Map
		width: '940px',
		height: '485px',
			
		//Misc Settings
		blankImage: '/wp-content/themes/8billionlives/js/images/blank.gif',
		zoomDuration: 500,
		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 Our World',
		
		//Initial Region to be shown
		map: {
			id: 'world',
			image: '/wp-content/themes/8billionlives/js/images/world.gif',
			data: '/our-world-world/',
			maps: [
			{
				id: 'northeast',
				parent: 'world',
				image: '/wp-content/themes/8billionlives/js/images/northeast.gif',
				data: '/our-world-northeast/',
				width: '66px',
				height: '34px',
				top: '109px',
				left: '257px'
			}
			
			]
		
			
			
		}
	});


});

