$(document).ready(function(){

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

$('#map').zoommap({
		// Width and Height of the Map
		width: '960px',
		height: '603px',
			
		//Misc Settings
		blankImage: 'images/blank.gif',
		zoomDuration: 1000,
		bulletWidthOffset: '20px',
		bulletHeightOffset: '20px',
		
		//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: '../wp-content/themes/protrade/images/mapbg.png',
			data: '../wp-content/themes/protrade/popups/campus.html',
			maps: [null]
		}
	});


});

