$(document).ready(function(){

$.ajaxSetup ({  
    cache: false  
});  

/* Show jQuery is running */
$('#regionContainer').zoommap({
		// Width and Height of the Map
		width: '500px',
		height: '580px',
			
		//Misc Settings
		blankImage: 'images/lotmanager/blank.gif',
		zoomDuration: 1000,
		bulletWidthOffset: '10px',
		bulletHeightOffset: '10px',
		
		//ids and classes
		zoomClass: 'zoomable',
		popupSelector: 'div.lots',
		popupCloseSelector: 'a.close',
		
		//Return to Parent Map Link
		showReturnLink: true,
		returnId: 'returnlink',
		returnText: 'Return to Previous Map',
		
		//Initial Region to be shown
		// maps.id must match the id of the related imagemap area
		// and should follow convention stage-[id] where id is the 
		// database id for the stage/release record
		map: {
			id: 'harford-grove',
			image: 'images/lotmanager/harford-grove/precinct/precinct.jpg',
			data: '',
			datalist: 'listreleases.aspx',
			datalistparams: 'precinctid=1',
			lotpagesize: 15,
			usemap: '#Map',
			maps: [
			
			]
		}
	});


});

