$(document).ready(function(){

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

$('#map').zoommap({
		// Width and Height of the Map
		width: '705px',
		height: '661px',
			
		//Misc Settings
		blankImage: 'wp-content/themes/corporate/mapplugin/images/blank.gif',
		zoomDuration: 1000,
		bulletWidthOffset: '22px',
		bulletHeightOffset: '22px',
		
		//ids and classes
		zoomClass: 'zoomable',
		popupSelector: 'div.popup',
		popupCloseSelector: 'a.close',
		
		//Return to Parent Map Link
		showReturnLink: true,
		returnId: 'returnlink',
		returnText: 'return to main map >',
		
		//Initial Region to be shown
		map: {
			id: 'uk',
			image: 'wp-content/themes/corporate/mapplugin/images/uk.png',
			data: 'wp-content/themes/corporate/mapplugin/popups/uk.html',
			
		}
	});


});

