$(document).ready(function(){

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

$('#map').zoommap({
		// Width and Height of the Map
		width: '534px',
		height: '212px',
			
		//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 World Map',
		
		//Initial Region to be shown
		map: {
			id: 'world',
			image: 'images/world.jpg',
			data: 'popups/campus.html',
			maps: [
			{
				id: 'uk',
				parent: 'world',
				image: 'images/uk.jpg',
				data: 'popups/uk.html',
				width: '20px',
				height: '8px',
				top: '42px',
				left: '250px'
				
				
				/* More maps can be nested
				maps : [ ]
				*/
			},
			
			
			
			{
				id: 'uae',
				parent: 'world',
				image: 'images/uae.jpg',
				data: 'popups/uae.html',
				width: '8px',
				height: '6px',
				top: '90px',
				left: '340px'
				
				
				/* More maps can be nested
				maps : [ ]
				*/
			},
			
			{
				id: 'europe',
				parent: 'world',
				image: 'images/europe.jpg',
				data: 'popups/europe.html',
				width: '38px',
				height: '16px',
				top: '50px',
				left: '252px'
				
				
				/* More maps can be nested
				maps : [ ]
				*/
			},
			
			{
				id: 'scandinavia',
				parent: 'world',
				image: 'images/scandinavia.jpg',
				data: 'popups/scandinavia.html',
				width: '65px',
				height: '27px',
				top: '24px',
				left: '273px'
				
				
				/* More maps can be nested
				maps : [ ]
				*/
			},
			
			{
				id: 'usa',
				parent: 'world',
				image: 'images/usa.jpg',
				data: 'popups/usa.html',
				width: '89px',
				height: '36px',
				top: '57px',
				left: '85px'
				
				
				/* More maps can be nested
				maps : [ ]
				*/
			},
			
			{
				id: 'middleeast',
				parent: 'world',
				image: 'images/middleeast.jpg',
				data: 'popups/middleeast.html',
				width: '36px',
				height: '49px',
				top: '67px',
				left: '304px'
				
				
				/* More maps can be nested
				maps : [ ]
				*/
			},
			
			{
				id: 'middleeast1',
				parent: 'world',
				image: 'images/middleeast.jpg',
				data: 'popups/middleeast.html',
				width: '8px',
				height: '24px',
				top: '67px',
				left: '340px'
				
				
				/* More maps can be nested
				maps : [ ]
				*/
			},
			
			{
				id: 'middleeast2',
				parent: 'world',
				image: 'images/middleeast.jpg',
				data: 'popups/middleeast.html',
				width: '8px',
				height: '19px',
				top: '97px',
				left: '340px'
				
				
				/* More maps can be nested
				maps : [ ]
				*/
			},
			
			{
				id: 'middleeast3',
				parent: 'world',
				image: 'images/middleeast.jpg',
				data: 'popups/middleeast.html',
				width: '8px',
				height: '49px',
				top: '67px',
				left: '349px'
				
				
				/* More maps can be nested
				maps : [ ]
				*/
			},
			
			{
				id: 'russia',
				parent: 'world',
				image: 'images/russia.jpg',
				data: 'popups/russia.html',
				width: '28px',
				height: '38px',
				top: '28px',
				left: '318px'
				
				
				/* More maps can be nested
				maps : [ ]
				*/
			},
			
			{
				id: 'russia1',
				parent: 'world',
				image: 'images/russia.jpg',
				data: 'popups/russia.html',
				width: '13px',
				height: '15px',
				top: '51px',
				left: '304px'
				
				
				/* More maps can be nested
				maps : [ ]
				*/
			}
			]
			
			
		}
	});


});

