jQuery(document).ready(function($) {
	
	$('div#layer-info').html($("li[id='focus']").html());
	
    $('area').hover(
        function() { 
		    var url = $(this).attr('href');
			var id = $(this).attr('id'); 
		    var coords = $(this).attr('coords').split(',');
			$('#layer-info').html($("li[id='"+id+"']").html());
		}
    );

});
