function _getOffSet($element, $object)
{
	$offset        = new Object;
	$offset.top    = $object ? $element.offsetTop : document.getElementById($element).offsetTop;
	$offset.left   = $object ? $element.offsetLeft : document.getElementById($element).offsetLeft;
	$offset.height = $object ? $element.offsetHeight : document.getElementById($element).offsetHeight;
	return $offset
}

function _post($path, $param, $after )
{
	$.post($path, $param,function($response)
	{
		ajaxResponse.prototype.response = $response;
		eval($after);
	});
}

function ajaxResponse(){}
$(function(){
	$.ajaxTimeout(15000);
	$("body").ajaxError(function()
	{
		//alert('システムエラーが発生しました。');
	});
});