$(document).ready(function(){
	$('#map').zoommap({
		// Width and Height of the Map
		width: '685px',
		height: '327px',
			
		//Misc Settings
		blankImage: '../images/map/blank.gif',
		fadeDuration: 500,
		zoomDuration: 300,
		
		//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: 'campus',
			image: '../images/map/large-map.jpg',
			data: 'popups/map/campus.html',
			maps: [
			{
				id: 'north-america',
				parent: 'campus',
				image: '../images/map/north-america.jpg',
				data: 'popups/north-america.html',
				width: '150px',
				height: '110px',
				top: '72px',
				left: '77px'
			},
			{
				id: 'europe-india-africa',
				parent: 'campus',
				image: '../images/map/eu-india-africa.jpg',
				data: 'popups/europe-india-africa.html',
				width: '322px',
				height: '232px',
				top: '63px',
				left: '292px'
			}
			]
		}
	}); 	
});


