div = getById("logo");
div.removeChild(div.firstChild);

imgitem("pics/gcl70.png", "[GameCube-Logo]", "index.htm");
imgitem("pics/fzero.jpg", "F-Zero GX", "fzerogx.htm");
imgitem("pics/logom.gif", "GameCube Cheats", "index.htm");
imgitem("pics/zelda.jpg", "Zelda: The Wind Waker", "zeldaww.htm");
imgitem("pics/sunshine.jpg", "Super Mario Sunshine", "sunshine.htm");

div.style.background = 'url(pics/bg120.gif)';
div.style.backgroundPosition = '0px 1px';
div.style.backgroundRepeat = 'repeat';

function imgitem(src, alt, url)
{
img = newTag('img'); img.src=src; img.className='wborder'; img.width='120'; img.height='70'; img.alt=alt;
img.style.marginRight = '6px';
if (url != null)
 {x = newTag('a'); x.href = url; div.appendChild(x);}
else
 {x = div; img.style.position = 'relative'; img.style.top = '1px'}
x.appendChild(img);
}