window. onload = function ()
{
	images = new Array (
					'./templates/imgs/lnk_top.png',
					'./templates/imgs/lnk_top-h.png',
					'./templates/imgs/lnk_lft.png',
					'./templates/imgs/lnk_lft-h.png',
					'./templates/imgs/lnk_search.png',
					'./templates/imgs/lnk_search-h.png'
					);
	preloadImages(images);
	setImgHover ();
	cheight = $('body'). offsetHeight;
	if (cheight < winHeight ())
		height = winHeight () - 436;
	else
		height = cheight - 436;
	$('cbody'). style. minHeight = height + 'px';
}

function $ (id)
{
	return document. getElementById (id);
}

function winHeight ()
{
	return window. innerHeight ? window. innerHeight : document. documentElement. clientHeight ? document. documentElement. clientHeight : document. body. clientHeight;
}
