$(document).ready(function() {
	// Interface functions
	$(".skyimg").hide();
	$("#skyimg_default").show();
	$(".n_icon").mouseover(function() {
		var icon = $(this);
		var n_id = icon.attr("neighborhood");
		var sky = $("#skyimg_" + n_id);
		$(".skyimg").hide();
		sky.show();
	}).mouseout(function() {
		var icon = $(this);
		$(".skyimg").hide();
		$("#skyimg_default").show();
	});
	$(".legend").mouseover(function() {
		var color = $(this).attr("icon");
		
		$(".n_icon").hide();
		$(".icon_" + color).show();
	}).mouseout(function() {
		$(".n_icon").show();
	});

});