$(document).ready(function(){

$('#map').zoommap({
		// Width and Height of the Map
		width: '358px',
		height: '178px',
			
		//Misc Settings
		blankImage: 'skelkitposte/images/dot.gif',
		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 campus map',
		
		//Initial Region to be shown
		map: {
			id: 'indonesia',
			//image: 'skelkitposte/images/map.gif',
			data: '?page=island'
			
		}
	});


});

