$(document).ready(function(){

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

$('#map').zoommap({
		// Width and Height of the Map
		width: '891px',
		height: '610px',
			
		//Misc Settings
		blankImage: 'images/btnHover-trans.png',
		zoomDuration: 1000,
		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 US map',
		
		//Initial Region to be shown
		map: {
			id: 'states',
			image: 'images/map.jpg',
			data: 'cities.php',
			maps: [
			{
				id: 'cities',
				parent: 'states',
				image: 'images/map.jpg',
				data: 'cities.php',
				width: '0',
				height: '0',
				top: '0',
				left: '0'
				/* More maps can be nested
				maps : [ ]
				*/
			}
			]
		}
	});


});

