$(document).ready(function() {
  $.ifixpng('images/blank.gif');
});

$(document).ready(function() {
	$("#Map area").bind("mouseover", function(e){		
		if ($(this).css("display") != "block")
		{				
			$("#tips").hide(0);	
			var pos = $(this).attr("coords").split(',');			
			var text = $(this).attr("alt");
			var lpos = parseInt(pos[0]) + 10;
			var tpos = parseInt(pos[1]) - 25;  
			$("#tips").text(text).css("left", lpos).css("top", tpos).show(0);			
		}					
	});
$("#Map area").bind("mouseout", function(e){
		$("#tips").hide(0);
	});					
});
