Point.hoverTimeout = 200;
Point.useFlashProxy = false;

// The URL of the proxy file. If Point.useFlashProxy is true, this should be the
// URL of the .swf proxy file (e.g. /path/to/pointproxy.swf)
Point.proxyUrl = "/pointcode/point.php";

// If Point.enableImmediately is set to true, Point will enable itself
// automatically as soon as the page has loaded
Point.enableImmediately = true;

Point.enabledPointImage = "/pointcode/point-enabled-b.gif";
Point.disabledPointImage = "/pointcode/point-disabled-b.gif";

// If findContentById is true, Point content is enabled inside an element with
// an id matching Point.pointEnabledDivId, instead of a CSS class matching
// Point.pointEnabledDivClass
Point.findContentById = false; 
Point.pointEnabledDivClass = "mainpoint";
Point.pointEnabledDivId = "point_content_div";

// Point will not be applied to text within the following elements:
Point.blacklistedElements = [
	"applet",
	"button",
	"canvas",
	"embed",
	"iframe",
	"map",
	"object",
	"script",
	"style",
	"table",
	"tbody",
	"textarea",
	"tfoot",
	"thead",
	"title",
	"tr"
];

// Point.spansInheritParentStyles should be set to false unless there are
// any layout problems inside Point-enabled content.
Point.spansInheritParentStyles = false;


// The following section is only relevant if Point.useFlashProxy is true.

// If Point.alertIfFlashMissing is true, any user without the correct version of
// Flash will be shown an alert box one time only telling them they need to get
// the latest version of Flash. Otherwise, the user sees no message and Point
// silently fails. Alerts are obtrusive and can annoy users so this is switched
// off by default.
Point.alertIfFlashMissing = false;

// Proxy settings
Point.blacklistedWords = [ 
	"a",
	"the",
	"an",
	"if",
	"then",
	"but",
	"because",
	"therefore",
	"of",
	"so",
	"than",
	"though",
	"would",
	"wouldn't"
];
Point.symbolSize = 80;

// The maximum number of symbols that appear in each Point tooltip
Point.maxSymbols = 3;
