$(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: 'wcbext',
			image: 'countdownmap/images/wcbext.jpg',
			data: 'countdownmap/popups/wcbext.cfm',
			maps: [
			{
				id: 'wcblevg',
				parent: 'wcbext',
				image: 'countdownmap/images/wcblevg.jpg',
				data: 'countdownmap/popups/wcblevg.cfm',
				width: '365px',
				height: '86px',
				top: '348px',
				left: '19px'
				/* More maps can be nested
				maps : [ ]
				*/
			},
			{
				id: 'wcblev1',
				parent: 'wcbext',
				image: 'countdownmap/images/wcblev1.jpg',
				data: 'countdownmap/popups/wcblev1.cfm',
				width: '365px',
				height: '107px',
				top: '248px',
				left: '19px'
				/* More maps can be nested
				maps : [ ]
				*/
			},

			{
				id: 'wcblev2',
				parent: 'wcbext',
				image: 'countdownmap/images/wcblev2.jpg',
				data: 'countdownmap/popups/wcblev2.cfm',
				width: '366px',
				height: '118px',
				top: '144px',
				left: '19px'
				/* More maps can be nested
				maps : [ ]
				*/
			},

			{
				id: 'wcblev3',
				parent: 'wcbext',
				image: 'countdownmap/images/wcblev3.jpg',
				data: 'countdownmap/popups/wcblev3.cfm',
				width: '550px',
				height: '164px',
				top: '35px',
				left: '19px'
				/* More maps can be nested
				maps : [ ]
				*/
			}


			]
		}
	});


});

