$(document).ready(function(){

/* Show jQuery is running */


$('#map').zoommap({
		// Width and Height of the Map
		width: '960px',
		height: '480px',
			
		//Misc Settings
		blankImage: 'countdownmap/images/blank.gif',
		zoomDuration: 200,
		bulletWidthOffset: '0px',
		bulletHeightOffset: '0px',
		
		//ids and classes
		zoomClass: 'zoomable',
		popupSelector: 'div.popup',
		popupCloseSelector: 'a.close',
		
		//Return to Parent Map Link
		showReturnLink: true,
		returnId: 'returnlink',
		returnText: 'Back',
		
		//Initial Region to be shown
		map: {
			id: 'lcext',
			image: 'countdownmap/images/lcext.jpg',
			data: 'countdownmap/popups/lcext.cfm',
			maps: [
			{
				id: 'lclev2',
				parent: 'lcext',
				image: 'countdownmap/images/lclev2.jpg',
				data: 'countdownmap/popups/lclev2.cfm',
				width: '242px',
				height: '75px',
				top: '403px',
				left: '718px'
				/* More maps can be nested
				maps : [ ]
				*/
			},
			{
				id: 'lclev3',
				parent: 'lcext',
				image: 'countdownmap/images/lclev3.jpg',
				data: 'countdownmap/popups/lclev3.cfm',
				width: '514px',
				height: '89px',
				top: '323px',
				left: '447px'
				/* More maps can be nested
				maps : [ ]
				*/
			},

			{
				id: 'lclev4',
				parent: 'lcext',
				image: 'countdownmap/images/lclev4.jpg',
				data: 'countdownmap/popups/lclev4.cfm',
				width: '514px',
				height: '100px',
				top: '233px',
				left: '446px'
				/* More maps can be nested
				maps : [ ]
				*/
			},

			{
				id: 'lclev5',
				parent: 'lcext',
				image: 'countdownmap/images/lclev5.jpg',
				data: 'countdownmap/popups/lclev5.cfm',
				width: '328px',
				height: '115px',
				top: '137px',
				left: '445px'
				/* More maps can be nested
				maps : [ ]
				*/
			}


			]
		}
	});


});

