$(document).ready(function(){

/* Show jQuery is running */
$('h1').css({textDecoration: 'underline'});

$('#map').zoommap({
		// Width and Height of the Map
		width: '660px',
		height: '500px',
			
		//Misc Settings
		blankImage: '/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 big map',
		
		//Initial Region to be shown
		map: {
			id: 'senqiu-store-china-map',
			image: '/images/china-map1.png',
			data: '/popups/senqiu-store-china-map.html',
			maps: [
			{
				id: 'senqiu-store-zoommap-1',
				parent: 'senqiu-store-china-map',
				image: '/images/china-zoommap1.png',
				data: '/popups/senqiu-store-zoommap.html',
				width: '276px',
				height: '210px',
				top: '180px',
				left: '278px'
				/* More maps can be nested
				maps : [ ]
				*/
			}
			]
		}
	});


});

