$(document).ready(function() {
	//JS Code Common for whole project goes here
	
	$('map area').hover(
		function(){ 
			$('div#' + $(this).attr('id') + '-adr' ).show();
		},
		function(){ 
			$('div#' + $(this).attr('id') + '-adr').hide();
		});
	
});

