$(document).ready(function(){

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

$('#map').zoommap({
		// Width and Height of the Map
		width: '960px',
		height: '637px',
			
		//Misc Settings
		blankImage: 'images/blank.gif',
		zoomDuration: 1000,
		bulletWidthOffset: '10px',
		bulletHeightOffset: '10px',
		leyendWidthOffset: '10px',
		leyendHeightOffset: '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: 'images/world.jpg',
			data: 'world.php',
			maps: [
			{
				id: 'north-america',
				parent: 'world',
				image: 'images/usa.jpg',
				data: 'north_america.php',
				width: '220px',
				height: '130px',
				top: '190px',
				left: '50px',
				/* More maps can be nested
				maps : [ ]
				*/
				},
			{
				id: 'central_america',
				parent: 'world',
				image: 'images/central_america.jpg',
				data: 'central_america.php',
				width: '180px',
				height: '62px',
				top: '320px',
				left: '80px',
			},
			{
				id: 'south_america',
				parent: 'world',
				image: 'images/south_america.jpg',
				data: 'south_america.php',
				width: '230px',
				height: '200px',
				top: '382px',
				left: '200px',
			},
			{
				id: 'africa',
				parent: 'world',
				image: 'images/africa.jpg',
				data: 'africa.php',
				width: '250px',
				height: '200px',
				top: '340px',
				left: '430px',
			},
			{
				id: 'europe',
				parent: 'world',
				image: 'images/europe.jpg',
				data: 'europe.php',
				width: '220px',
				height: '180px',
				top: '135px',
				left: '425px',
			},
			{
				id: 'asia',
				parent: 'world',
				image: 'images/asia.jpg',
				data: 'asia.php',
				width: '290px',
				height: '205px',
				top: '110px',
				left: '645px',
			},
			{
				id: 'east-asia',
				parent: 'world',
				image: 'images/philippines.jpg',
				data: 'east-asia.php',
				width: '250px',
				height: '125px',
				top: '315px',
				left: '675px',
			}
			]
		}
		
	});


});

