function erase(j)
{
if (typeof(top.menu.loadindic)=='undefined') 
{
	eraz = 'erase('+j+')';
	setTimeout(eraz,200);
}
if (top.menu.loadindic != 1)
	{
	eraz = 'erase('+j+')';
	setTimeout(eraz,200);
	}

if (top.menu.loadindic == 1)
{
	top.menu.actif = j
	top.menu.document.images['rub'+j].src = top.menu.document.preloadArray_on[(j-1)].src;
	top.menu.document.images['fl'+j].src = top.menu.document.preloadArray_on[15].src;
	
	for (i=1; i<16; i++)
		{
		if (i!=j){
		top.menu.document.images['rub' + i].src = top.menu.document.preloadArray_off[(i-1)].src;
		top.menu.document.images['fl'+i].src = top.menu.document.preloadArray_off[15].src;
		}
		}
}	
}
if (document.layers) {
		origWidth = innerWidth;
		origHeight = innerHeight;
		window.onresize = handleResize;
	}
function handleResize() {
		if (innerWidth != origWidth || innerHeight != origHeight) { location.reload(); }
		return false
	}
