var theImages = new Array()
    title = new Array()
    hint = new Array()

theImages[0] = '01.gif';
title[0] = '<a href = "index.php?art=me-programy-a-hry" class="tip_odkaz">Cheese mouse</a>';
hint[0] = 'Pestrá hopsačka s myší v hlavní roli';

theImages[1] = '02.gif';
title[1] = '<a href = "index.php?art=pascal-plosinovka-nightwalker" class="tip_odkaz">Nightwalker</a>';
hint[1] = 'Krátká retro hra. Dovedete zbloudilou duši zpět do našeho světa?';

theImages[2] = '03.gif';
title[2] = '<a href = "index.php?art=delphi-fraktal-mandelbrotova-mnozina" class="tip_odkaz">Mandelbroth</a>';
hint[2] = 'Prozkoumejte nekonečně členitý fraktální útvar!';

theImages[3] = '04.gif';
title[3] = '<a href = "index.php?art=papiii-clock-casovane-vypnuti-pocitace" class="tip_odkaz">PapiiiClock</a>';
hint[3] = 'Nastavte si automatické vypnuti počítače, když hodláte usnout u filmu.';

theImages[4] = '05.gif';
title[4] = '<a href = "http://islandsoft.ic.cz" class="tip_odkaz">Vyvoj programu na zakazku</a>';
hint[4] = 'Máte před semestrálkou nebo potřebuje databázový systém? Rád ho pro Vás vytvořím.';

var whichImage = Math.floor(Math.random() * theImages.length);

function showImage(){
 document.write('<br/><div id="nahodny-tip"><img src="banners/' + theImages[whichImage] + '" width="110" alt="Náhodný tip"/><br/>');
 document.write(title[whichImage] + '<br/>');
 document.write('<br/>' + hint[whichImage] + '</div>');
}