$(document).ready(function(){

/* Show jQuery is running */
$('h1').css({textDecoration: 'underline'});

$('#map').zoommap({
		// Width and Height of the Map
		width: '986',
		height: '620',
			
		//Misc Settings
		blankImage: 'images/blank.gif',
		zoomDuration: 800,
		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 previous map',
		
		//Initial Region to be shown
		map: {
			id: 'state',
			image: 'images/state.jpg',
			data: 'popups/campus.html',
			maps: [
			{
				id: 'county',
				parent: 'state',
				image: 'images/county.jpg',
				data: 'popups/quads.html',
				width: '50',
				height: '36',
				top: '301',
				left: '583',
				maps : [
                                {
				   id: 'city',
				   parent: 'county',
				   image: 'images/city.jpg',
				   data: 'popups/quads2.html',
				   width: '246',
				   height: '154',
				   top: '160',
				   left: '476',
				   maps: [
                                   {
                                     id: 'msoutheast',
                                     parent: 'city',
                                     image: 'images/msoutheast.jpg',
                                     data: 'popups/msoutheast.html',
                                     width: '123',
                                     height: '77',
                                     left: '603',
                                     top: '460'
                                   },
                                   {
                                     id: 'mrail',
                                     parent: 'city',
                                     image: 'images/mrail.jpg',
                                     data: 'popups/mrail.html',
                                     width: '190',
                                     height: '124',
                                     left: '408',
                                     top: '46'
                                   },
                                   {
                                     id: 'menterprise',
                                     parent: 'city',
                                     image: 'images/menterprise.jpg',
                                     data: 'popups/menterprise.html',
                                     width: '94',
                                     height: '63',
                                     left: '460',
                                     top: '171'
                                   },
                                   {
                                     id: 'mairport',
                                     parent: 'city',
                                     image: 'images/mairport.jpg',
                                     data: 'popups/mairport.html',
                                     width: '100',
                                     height: '63',
                                     left: '304',
                                     top: '106'
                                   },
                                   {
                                     id: 'mbioscience',
                                     parent: 'city',
                                     image: 'images/mbioscience.jpg',
                                     data: 'popups/mbioscience.html',
                                     width: '121',
                                     height: '82',
                                     left: '267',
                                     top: '170'
                                   }
                                   ]

				}
				]
			}
			]
		}
	});


});

