/*Random Image*/
function randomImage()
{
  var image = new Array();
  var url = new Array();
  var alt = new Array();
  var text = new Array();

  image[1] = "http://www.darlosworld.co.uk/wp-content/uploads/2009/01/anna-photoshop-padfinale-150x150.jpg";
  image[2] = "http://www.darlosworld.co.uk/wp-content/uploads/2009/01/anna-photoshop-tabfinale-150x150.jpg";
  image[3] = "http://www.darlosworld.co.uk/wp-content/uploads/2009/01/gyamball-150x150.jpg";
  image[4] = "http://www.darlosworld.co.uk/wp-content/uploads/2009/11/gyamball2-150x150.jpg";
  image[5] = "http://www.darlosworld.co.uk/wp-content/uploads/2009/01/assassins-150x150.gif";
  image[6] = "http://www.darlosworld.co.uk/wp-content/uploads/2009/02/my-brother-150x150.jpg";
  url[1] = "http://www.darlosworld.co.uk/writing/articles/photoshop-power-tab-vs-paupers-paint-pad/";
  url[2] = "http://www.darlosworld.co.uk/writing/articles/photoshop-power-tab-vs-paupers-paint-pad/";
  url[3] = "http://www.darlosworld.co.uk/actingvideo/gyamball-episode-1/";
  url[4] = "http://www.darlosworld.co.uk/actingvideo/gyamball-episode-2/";
  url[5] = "http://www.darlosworld.co.uk/actingvideo/the-assassins-guild-documentary/";
  url[6] = "http://www.darlosworld.co.uk/gallery/anime/";
  alt[1] = "Anna - Drawn using Adobe Photoshop CS2 with a laptop finger pad";
  alt[2] = "Anna - Drawn using Adobe Photoshop CS2 with a Wacom Tablet";
  alt[3] = "Gyamball";
  alt[4] = "Gyamball";
  alt[5] = "The Assassins Guild";
  alt[6] = "Anime"
  text[1] = "Read Photoshop Power Tab Vs Paupers Paint Pad, where I compare Microsoft Paint with Photoshop CS2, and a Wacom Tablet with a laptop finger pad.";
  text[2] = "Read Photoshop Power Tab Vs Paupers Paint Pad, where I compare Microsoft Paint with Photoshop CS2, and a Wacom Tablet with a laptop finger pad.";
  text[3] = "Watch Gyamball, the show where you can win or lose it all in an instant by answering three simple questions.";
  text[4] = "Watch Gyamball, the show where you can win or lose it all in an instant by answering three simple questions.";
  text[5] = "Watch as I try to take part in the Leeds University Assassins Guild";
  text[6] = "A range of animations that I have made in flash."

  var index = Math.floor(Math.random()*image.length);
  if (index == 0) {
    index = 1;
  }

  document.write('<p align="center"><a href="' + url[index] + '"><img src="' + image[index] + '" alt="' + alt[index] + '"/><br />' + text[index] + '</a></p>');
}