$(document).ready(function(){

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

$('#map').zoommap({
		// Width and Height of the Map
		width: '468px',
		height: '440px',
			
		//Misc Settings
		blankImage: 'http://www.ntd.com.au/wp-content/themes/H5/images/blank.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: 'campus',
			image: 'http://www.ntd.com.au/wp-content/themes/H5/images/australiamap.png',
			data: 'http://www.ntd.com.au/wp-content/themes/H5/popups/ntdlocations.html',			
		}
	});
});

