$(document).ready(function(){

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

$('#map').zoommap({
		// Width and Height of the Map
		width: '329px',
		height: '372px',
			
		//Misc Settings
		blankImage: 'http://www.hi-cam.nl/testcms/assets/templates/hicam/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: 'terug',
		
		//Initial Region to be shown
		map: {
			id: 'nederland',
			image: 'assets/templates/hicam/images/nederland.gif',
			data: 'http://www.hi-cam.nl/testcms/deelnemers_popups.htm',
			maps: [
			{
				id: 'brabant',
				parent: 'nederland',
				image: 'assets/templates/hicam/images/nederland.gif',
				data: 'http://www.hi-cam.nl/testcms/deelnemers_popups_brabant.htm',
				width: '200px',
				height: '232px',
				top: '180px',
				left: '76px'
				/* More maps can be nested
				maps : [ ]
				*/
			},
			
				{	id: 'friesland',
				parent: 'nederland',
				image: 'assets/templates/hicam/images/nederland.gif',
				data: 'http://www.hi-cam.nl/testcms/deelnemers_popups_friesland.htm',
				width: '121px',
				height: '114px',
				top: '20px',
				left: '176px'
				}
				,
			
				{	id: 'groningen',
				parent: 'nederland',
				image: 'assets/templates/hicam/images/nederland.gif',
				data: 'http://www.hi-cam.nl/testcms/deelnemers_popups_friesland.htm',
				width: '200px',
				height: '232px',
				top: '20px',
				left: '276px'
				}
			]
		}
	});


});
