modCss	= {

	getCssStyle: function(elem, cssProperty)
	{
		if (elem)
		{
			if (window.getComputedStyle)
				return window.getComputedStyle(elem, null).getPropertyValue(cssProperty);
			else if (elem.currentStyle)
			{
				var ind = 0;
				while ((ind = cssProperty.indexOf('-', ind)) != -1)
				{
					var c = cssProperty.charAt(++ind);
					cssProperty = cssProperty.replace(/-\S{1}/, c.toUpperCase());
				}
				return elem.currentStyle[cssProperty];
			}
		}
		return '';
	}
}