$(document).ready(function(){

/* Show jQuery is running */



$('#map').zoommap({
		// Width and Height of the Map
		width: '1004px',
		height: '459px',
			
		//Misc Settings

		zoomDuration: 1500,
		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 campus map',
		
				//Initial Region to be shown
		map: {
			id: 'campus',
			image: 'http://www.albrightstonebridge.com/wp-content/themes/asg/images/landing/globe.gif',
			data: 'http://www.albrightstonebridge.com/wp-content/themes/asg/popups/locations.php',
			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 : [ ]
				*/
			}
			]
		}
	});






});




 
