<!-- Start Layout JavaScript //
	
	function getLeft (object) {
		if (object.offsetParent) {
			return (object.offsetLeft + getLeft(object.offsetParent));
		} else  {
			return object.offsetLeft;
		}
	}
	
	function getTop (object) {
		if (object.offsetParent) {
			return (object.offsetTop + getTop(object.offsetParent));
		} else {
			return object.offsetTop;
		}
	}
	
	function getWidth (object) {
		if (typeof object.clientWidth != "undefined") {
			return object.clientWidth;
		} else if (typeof object.width != "undefined") {
			return parseInt (object.width, 10);
		} else if (typeof object.style.width != "undefined") {
			return parseInt (object.style.width, 10);
		}
	}
	
	function getHeight (object) {
		if (typeof object.clientHeight != "undefined") {
			return object.clientHeight;
		} else if (typeof object.height != "undefined") {
			return parseInt (object.height, 10);
		} else if (typeof object.style.height != "undefined") {
			return parseInt (object.style.height, 10);
		}
	}
	
// End Layout JavaScript -->