﻿class_EndecaScript = function()
{
}
class_EndecaScript.prototype =
{
	showHourGlass : function()
	{
		if(document && document.styleSheets)
		{
			var stylesheet = document.styleSheets[document.styleSheets.length-1];
			if(stylesheet.addRule)
			{
				stylesheet.addRule('*','cursor:wait !important',0);
			}
			else if(stylesheet.insertRule)
			{
				stylesheet.insertRule('* { cursor:wait !important }',0);
			}
		}
	}
}
var EndecaScript = new class_EndecaScript();
