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

  image[1] = "imgs/reviews/hellgatelondon.jpg";
  image[2] = "imgs/reviews/mangasutra.jpg";
  image[3] = "imgs/reviews/grandoisedelusion.jpg";
  image[4] = "imgs/reviews/omnibus.jpg";
  image[5] = "imgs/reviews/preludeiv.jpg";
  image[6] = "imgs/reviews/prelude.jpg";
  image[7] = "imgs/reviews/juren.jpg";
  image[8] = "imgs/reviews/chocolat.jpg";
  image[9] = "imgs/reviews/cantana.jpg";
  image[10] = "imgs/reviews/pixiepop.jpg"; 
  url[1] = "review_hellgatelondon.php";
  url[2] = "review_mangasutra.php";
  url[3] = "review_grandoisedelusion.php";
  url[4] = "review_omnibus.php";
  url[5] = "review_preludeiv.php";
  url[6] = "review_prelude.php";
  url[7] = "review_juren.php";
  url[8] = "review_chocolat.php";
  url[9] = "review_cantana.php";
  url[10] = "review_pixiepop.php";  
  alt[1] = "Hellgate London";
  alt[2] = "Manga Sutra";
  alt[3] = "Grandoise Delusion";
  alt[4] = "Omnibus";
  alt[5] = "Prelude IV";
  alt[6] = "Prelude";
  alt[7] = "Juren";
  alt[8] = "Chocolat";
  alt[9] = "Cantana";
  alt[10] = "Pixie Pop";
  text[1] = '<a href="review_hellgatelondon.php">Read the Hellgate London Review by Shehzaan Abdulla</a>'
  text[2] = '<a href="review_mangasutra.php">Read the Manga Sutra Review by Darlo</a>'
  text[3] = '<a href="review_grandoisedelusion.php">Read the Grandoise Delusion Review by Matt Anstis</a>'
  text[4] = '<a href="review_omnibus.php">Read the Omnibus Review by Matt Anstis</a>'
  text[5] = '<a href="review_preludeiv.php">Read the Prelude IV Review by Matt Anstis</a>'
  text[6] = '<a href="review_prelude.php">Read the Prelude Review by Matt Anstis</a>'
  text[7] = '<a href="review_juren.php">Read the Juren Review by Matt Anstis</a>'
  text[8] = '<a href="review_chocolat.php">Read the Chocolat Review by Matt Anstis</a>'
  text[9] = '<a href="review_cantana.php">Read the Cantana Review by Matt Anstis</a>'
  text[10] = '<a href="review_pixiepop.php">Read the Pixie Pop Review by Fiona Macleod</a>'

  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] + '"/></a></p><p>' +text[index] + '</p>');
}
/*end*/

/*Random Image (Header)*/
function randomImageHeader()
{
  var image = new Array();
  var alt = new Array();

  image[1] = "imgs/site_headers/welcome_to_lotaku.jpg";
  alt[1] = "Welcome to Lotaku.co.uk";

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

  document.write('<a href="http://www.lotaku.co.uk/"><img src="' + image[index] + '" alt="' + alt[index] + '" border="0"/></a>');
}
/*end*/