$(document).ready(function(){
	$('#map').zoommap({
		//width & height of the map
		width: '736px',
		height: '303px',

		//miscellaneous
		blankImage: 'images/blank.gif',
		zoomDuration: 1000,
		bulletWidthOffset: '4px',
		bulletHeightOffset: '4px',

		//ids & classes
		zoomClass: 'zoomable',
		popupSelector: 'div.popup',
		popupCloseSelector: 'a.close',

		//"return" link
		showReturnLink: true,
		returnId: 'returnlink',
		returnText: 'return',

		//initial region
		map: {
			id: 'world',
			image: 'images/world_map.jpg',
			data: 'world.php',
			maps: []
		}
	});
});

