Point.hoverTimeout = 200;

// The URL of the proxy file.
Point.proxyUrl = "/point.ashx";

// If Point.enableImmediately is set to true, Point will enable itself
// automatically as soon as the page has loaded
Point.enableImmediately = true;

Point.enabledPointImage = "images/widgit/point-enabled-b.gif";
Point.disabledPointImage = "images/widgit/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 = "divPointEnabled";
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;

// If Point.httpsImageUrls is true, Point's symbol images will be served via
// HTTPS rather than HTTP.
Point.httpsImageUrls = false;

// Multilingual support
Point.defaultLanguage = "English_UK";

Point.languageCssClasses = {
	"point_english_uk": "English_UK",
	"point_czech": "Czech",
	"point_dutch": "Dutch",
	"point_english_us": "English_US",
	"point_french": "French",
	"point_greek": "Greek",
	"point_italian": "Italian",
	"point_polish": "Polish",
	"point_portuguese": "Portuguese",
	"point_spanish": "Spanish"
};