$(document).ready(function(){

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

$('#map').zoommap({
		// Width and Height of the Map
		width: '575px',
		height: '489px',
			
		//Misc Settings
		blankImage: '/map/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: 'Back To Main Map',
		
		//Initial Region to be shown
		map: {
			id: 'eastLancs',
			image: '/map/images/localMap.png',
			data: '/map/popups/main.html',
			maps: [
			{
				id: 'hyndburn',
				parent: 'eastLancs',
				image: '/map/images/hyndburnMap.png',
				data: '/map/popups/hyndburn.php',
				width: '115px',
				height: '33px',
                top: '137px',
                left: '178px'
			},
            {
                id: 'blackburn',
                parent: 'eastLancs',
                image: '/map/images/blackburnMap.png',
                data: '/map/popups/blackburn.php',
                width: '115px',
                height: '33px',
                top: '302px',
                left: '75px'
            },
            {
                id: 'rossendale',
                parent: 'eastLancs',
                image: '/map/images/rossendaleMap.png',
                data: '/map/popups/rossendale.php',
                width: '115px',
                height: '33px',
                top: '280px',
                left: '352px'
            }
			]
		}
	});


});

