/*
  This is the random image generator. If you add more images,
  You must change the number used to multiply by.

  example:  if you have 9 banners
            var numberForUrl=Math.random()*9;

  I suppose an array might work for this, but then you'd have to
  input each image into the array. Why bother? Just name all the
  images you use to img_(*).jpg Where (*) is the number
  corrosponding with the next banner. Don't add 0s though.

  I wrote this myself, so if you use it, just credit me a little.
  =)
  -LeonMcNichol
*/

	var numberForUrl=Math.random()*48;

	numberForUrl=Math.round(numberForUrl);

	if(numberForUrl == 0)
		numberForUrl++;
    document.write('<img src=\"images/site/cornerpics/cornerpic_' + numberForUrl + '.jpg" width="268" height="159" border="0" alt="Yay! Random!">');

