$(document).ready(function(){

/* Show jQuery is running */
$('h1').css({textDecoration: 'underline'});

$('#map').zoommap({
		// Width and Height of the Map
		width: '640px',
		height: '315px',
			
		//Misc Settings
		blankImage: 'images/blank.gif',
		zoomDuration: 100,
		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: '<img src="http://awepa.org/templates/awepa_front/zoomout.png"/>',
		
		//Initial Region to be shown
		map: {
			id: 'campus',
			image: 'images/map.png',
			data: '/map',
			maps: [
			{
				id: 'quads',
				parent: 'campus',
				image: 'images/europe.png',
				data: '/europe',
				width: '640px',
				height: '315px',
				top: '0px',
				left: '285px'
				
			}

			]
		}
	});


});

