$(document).ready(function(){

/* Show jQuery is running 
$('h1').css({textDecoration: 'underline'});*/

$('#map').zoommap({
		// Width and Height of the Map
		width: '600px',
		height: '526px',
			
		//Misc Settings
		blankImage: 'http://globaleducationfund.dreamhosters.com/wp-content/themes/GEF1.0/images/maps/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 world map',
		
		//Initial Region to be shown
		map: {
			id: 'world',
			image: 'http://globaleducationfund.dreamhosters.com/wp-content/themes/GEF1.0/images/maps/GEF-World.jpg',
			data: 'http://globaleducationfund.dreamhosters.com/wp-content/themes/GEF1.0/mapsinfo/campus.html',
			maps: [
			{
				id: 'southamerica',
				parent: 'world',
				image: 'http://globaleducationfund.dreamhosters.com/wp-content/themes/GEF1.0/images/maps/GEF-SouthAmerica.jpg',
				data: 'http://globaleducationfund.dreamhosters.com/wp-content/themes/GEF1.0/mapsinfo/quads.html',
				width: '200px',
				height: '175px',
				top: '264px',
				left: '0px'
				/* More maps can be nested
				maps : [ ]
				*/
			}
			]
		}
	});


});

