$(document).ready(function(){
/* Show jQuery is running */

$('#map').zoommap({
		// Width and Height of the Map
		width: '960px',
		height: '335px',
			
		//Misc Settings
		blankImage: '',
		zoomDuration: 800,
		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: '',		
		//Initial Region to be shown
		map: {
			id: 'sc_village',
			image: 'http://www.santaclausvillage.info/santaclausvillage_wp/wp-content/themes/pajakyla/images/kartta_bg.jpg',
			data: 'http://www.santaclausvillage.info/santaclausvillage_wp/kartta/popups/yritykset.php'
			/*maps: [
			{
				id: 'sc_village_winter',
				parent: 'sc_village',
				image: 'http://www.seven-developer.com/demo9/wp-content/themes/pajakyla/images/kartta1_bg.jpg',
				data: 'http://www.seven-developer.com/demo9/kartta/popups/yritykset.php',
				width: '117px',
				height: '54px'
				/* More maps can be nested
				maps : [ ]
				
			}
			]*/
		}
	});

});	