// Javascript for random Ubuntu image display
// See: http://crunchbang.org/archives/2008/01/25/random-ubuntu-advocacy/
// Philip Newborough <mail@philipnewborough.co.uk>

// Translated [pt-PT] by: mWm
// see: http://mwmdev.com/viewpost.php?id=92

images = new Array(7);
images[0] = '<a href="http://www.ubuntu.com/getubuntu" title="Fast secure surfing with Firefox and Ubuntu."><img src="http://albuns.mwmdev.com/pictures/199_164_ubuntu_and_firefox.png" width="199" height="164" border="0" alt="Fast secure surfing with Firefox and Ubuntu."></a>';
images[1] = '<a href="http://www.ubuntu.com/getubuntu" title="Organize, enjoy &amp; share your photos with F-Spot and Ubuntu."><img src="http://albuns.mwmdev.com/pictures/199_164_ubuntu_and_fspot.png" width="199" height="164" border="0" alt="Organize, enjoy &amp; share your photos with F-Spot and Ubuntu."></a>';
images[2] = '<a href="http://www.ubuntu.com/getubuntu" title="Get creative with GIMP and Ubuntu."><img src="http://albuns.mwmdev.com/pictures/199_164_ubuntu_and_gimp.png" width="199" height="164" border="0" alt="Get creative with GIMP and Ubuntu."></a>';
images[3] = '<a href="http://www.ubuntu.com/getubuntu" title="Work smarter with OpenOffice.org and Ubuntu."><img src="http://albuns.mwmdev.com/pictures/199_164_ubuntu_and_ooo.png" width="199" height="164" border="0" alt="Work smarter with OpenOffice.org and Ubuntu."></a>';
images[4] = '<a href="http://www.ubuntu.com/getubuntu" title="Chat more with Pidgin Instant Messenger and Ubuntu."><img src="http://albuns.mwmdev.com/pictures/199_164_ubuntu_and_pidgin.png" width="199" height="164" border="0" alt="Chat more with Pidgin Instant Messenger and Ubuntu."></a>';
images[5] = '<a href="http://www.ubuntu.com/getubuntu" title="Rip, burn &amp; play with Rhythmbox and Ubuntu."><img src="http://albuns.mwmdev.com/pictures/199_164_ubuntu_and_rhythmbox.png" width="199" height="164" border="0" alt="Rip, burn &amp; play with Rhythmbox and Ubuntu."></a>';
images[6] = '<a href="http://www.ubuntu.com/getubuntu" title="Find it faster with Meta Tracker and Ubuntu."><img src="http://albuns.mwmdev.com/pictures/199_164_ubuntu_and_tracker.png" width="199" height="164" border="0" alt="Find it faster with Meta Tracker and Ubuntu."></a>';
index = Math.floor(Math.random() * images.length);
document.write(images[index]);