$(document).ready(function(){

/* Show jQuery is running */
$('h1').css({textDecoration: 'none'});

$('#map').zoommap({
		// Width and Height of the Map
		width: '400px',
		height: '423px',
			
		//Misc Settings
		blankImage: 'http://www.psimidstream.com/site/files/themes/psi/js/images/blank.gif',
		zoomDuration: 1000,
		bulletWidthOffset: '5px',
		bulletHeightOffset: '5px',
		
		//ids and classes
		zoomClass: 'zoomable',
		popupSelector: 'div.popup',
		popupCloseSelector: 'a.close',
		
		//Return to Parent Map Link
		showReturnLink: true,
		returnId: 'returnlink',
		returnText: 'return to map',
		
		//Initial Region to be shown
		map: {
			id: 'cities',
			image: 'http://www.psimidstream.com/site/files/themes/psi/js/images/map.jpg',
			data: 'http://www.psimidstream.com/site/files/themes/psi/js/popups/cities.php',
			maps: []
		}
	});


});
