$(document).ready(function(){

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

$('#map').zoommap({
		// Width and Height of the Map
		width: '850px',
		height: '396px',
			
		//Misc Settings
		blankImage: 'images/blank.gif',
		zoomDuration: 1000,
		bulletWidthOffset: '0px',
		bulletHeightOffset: '0px',
		
		//ids and classes
		zoomClass: 'zoomable',
		popupSelector: 'div.popup',
		popupCloseSelector: 'a.close',
		
		//Return to Parent Map Link
		showReturnLink: true,
		returnId: 'returnlink',
		returnText: 'Zur Karte zurückkehren...',
		
		//Initial Region to be shown
		map: {
			id: 'campus',
			image: 'images/welt.png',
			data: 'popups/infos.html',
			maps: [
			{
				id: 'quads',
				parent: 'campus',
				image: 'images/quads.png',
				data: 'popups/quads.html',
				width: '0px',
				height: '0px',
				top: '0px',
				left: '0px'
				/* More maps can be nested
				maps : [ ]
				*/
			}
			]
		}
	});


});

