function showMap(content,e){
	var showX,showY,totalWidth,totalHeight
	showX = e.pageX+5;
	showY = e.pageY+5;
	$("#showInfo").html(content);
	$("#showInto").css({top:showY,left:showX,display:"block"});
}
