function cover(){
	var t = $$('body')[0];
	var dim = window.getScrollSize();
	
	var c = new Element('div', {
		'id': 'cover',
		'styles': {
			'position': 'absolute',
			'top': '0px',
			'left': '0px',
			'background': '#fff url(img/loading.gif) no-repeat center center',
			'width':dim.x,
			'height':dim.y,
			'z-index':10000
		}
	});
	t.adopt(c);
	c.fade(0.7);
//	return c;
} // cover
function remove_cover() {
	var c = $('cover');
	c.destroy();
}
