var reviewImages = new Array();
var reviewInformation = new Array();
var reviewLinks = new Array();

reviewImages[0] = 'http://images.dvdtalk.com/covers/B002NTDX6O.jpg';
reviewInformation[0] = '&#34;The General&#34; by DVD Savant';
reviewLinks[0] = 'http://www.dvdtalk.com/reviews/read.php?ID=39462';
reviewImages[1] = 'http://images.dvdtalk.com/covers/B002QW7AKS.jpg';
reviewInformation[1] = '&#34;Paper Heart&#34; by Adam Tyner';
reviewLinks[1] = 'http://www.dvdtalk.com/reviews/read.php?ID=39993';
reviewImages[2] = 'http://images.dvdtalk.com/covers/B0024FAG6M.jpg';
reviewInformation[2] = '&#34;Easy Rider&#34; by Stuart Galbraith IV';
reviewLinks[2] = 'http://www.dvdtalk.com/reviews/read.php?ID=38673';
reviewImages[3] = 'http://images.dvdtalk.com/covers/B002PB4I4Q.jpg';
reviewInformation[3] = '&#34;The Open Road&#34; by Brian Orndorf';
reviewLinks[3] = 'http://www.dvdtalk.com/reviews/read.php?ID=39992';
reviewImages[4] = 'http://images.dvdtalk.com/covers/B0029XFN9E.jpg';
reviewInformation[4] = '&#34;Wrong Turn 2: Dead End&#34; by Thomas Spurlin';
reviewLinks[4] = 'http://www.dvdtalk.com/reviews/read.php?ID=40766';
reviewImages[5] = 'http://images.dvdtalk.com/covers/B001GXRVVG.jpg';
reviewInformation[5] = '&#34;Fullmetal Alchemist: The Conqueror of Shamballa Movie&#34; by John Sinnott';
reviewLinks[5] = 'http://www.dvdtalk.com/reviews/read.php?ID=40746';
reviewImages[6] = 'http://images.dvdtalk.com/covers/B002M36R14.jpg';
reviewInformation[6] = '&#34;Gomorrah&#34; by Jason Bailey';
reviewLinks[6] = 'http://www.dvdtalk.com/reviews/read.php?ID=39904';
reviewImages[7] = 'http://images.dvdtalk.com/covers/B002LB8TZ4.jpg';
reviewInformation[7] = '&#34;My Brilliant Career&#34; by DVD Savant';
reviewLinks[7] = 'http://www.dvdtalk.com/reviews/read.php?ID=39368';
reviewImages[8] = 'http://images.dvdtalk.com/covers/B002MU4NL8.jpg';
reviewInformation[8] = '&#34;Galaxy Quest&#34; by Thomas Spurlin';
reviewLinks[8] = 'http://www.dvdtalk.com/reviews/read.php?ID=39314';
reviewImages[9] = 'http://images.dvdtalk.com/covers/B00164EAC8.jpg';
reviewInformation[9] = '&#34;Godzilla&#34; by DVD Savant';
reviewLinks[9] = 'http://www.dvdtalk.com/reviews/read.php?ID=38503';
reviewImages[10] = 'http://images.dvdtalk.com/covers/B002KPINDY.jpg';
reviewInformation[10] = '&#34;Witchblade: The Complete Series&#34; by Ian Jane';
reviewLinks[10] = 'http://www.dvdtalk.com/reviews/read.php?ID=38667';
reviewImages[11] = 'http://images.dvdtalk.com/covers/B002O5M4SU.jpg';
reviewInformation[11] = '&#34;Angels & Demons - Two-Disc Theatrical & Extended Cut&#34; by Brian Orndorf';
reviewLinks[11] = 'http://www.dvdtalk.com/reviews/read.php?ID=39500';
reviewImages[12] = 'http://images.dvdtalk.com/covers/B002KGREEM.jpg';
reviewInformation[12] = '&#34;Moonshot&#34; by Stuart Galbraith IV';
reviewLinks[12] = 'http://www.dvdtalk.com/reviews/read.php?ID=38661';
reviewImages[13] = 'http://images.dvdtalk.com/covers/B002LMOCJA.jpg';
reviewInformation[13] = '&#34;Kevin Smith 3-Movie Collection (Clerks, Chasing Amy, Jay and Silent Bob Strike Back)&#34; by Jason Bailey';
reviewLinks[13] = 'http://www.dvdtalk.com/reviews/read.php?ID=38725';
reviewImages[14] = 'http://images.dvdtalk.com/covers/B002PSLXPG.jpg';
reviewInformation[14] = '&#34;Ballast&#34; by Chris Neilson';
reviewLinks[14] = 'http://www.dvdtalk.com/reviews/read.php?ID=39742';
reviewImages[15] = 'http://images.dvdtalk.com/covers/B0029R81BW.jpg';
reviewInformation[15] = '&#34;Scrubs: The Complete Eighth Season&#34; by Ryan Keefer';
reviewLinks[15] = 'http://www.dvdtalk.com/reviews/read.php?ID=38372';
reviewImages[16] = 'http://images.dvdtalk.com/covers/B001AVCFK6.jpg';
reviewInformation[16] = '&#34;Star Trek (2009)&#34; by Brian Orndorf';
reviewLinks[16] = 'http://www.dvdtalk.com/reviews/read.php?ID=38569';
reviewImages[17] = 'http://images.dvdtalk.com/covers/B0017HRJ04.jpg';
reviewInformation[17] = '&#34;Heat&#34; by Jason Bailey';
reviewLinks[17] = 'http://www.dvdtalk.com/reviews/read.php?ID=38584';
reviewImages[18] = 'http://images.dvdtalk.com/covers/B0013N7FZ6.jpg';
reviewInformation[18] = '&#34;Gone with the Wind&#34; by Adam Tyner';
reviewLinks[18] = 'http://www.dvdtalk.com/reviews/read.php?ID=40613';
reviewImages[19] = 'http://images.dvdtalk.com/covers/B002L9N4DS.jpg';
reviewInformation[19] = '&#34;Forrest Gump&#34; by Ryan Keefer';
reviewLinks[19] = 'http://www.dvdtalk.com/reviews/read.php?ID=40708';

function displayReviewAd()
{
   var randomReview = Math.round(Math.random()*(reviewImages.length-1));
   document.write('<a href="'+reviewLinks[randomReview]+'" onMouseOver="self.status=\''+reviewInformation[randomReview]+'\' ; return true" onMouseOut="self.status=\'\' ; return true">');
   document.write('<img src="'+reviewImages[randomReview]+'" height="160" alt="'+reviewInformation[randomReview]+'" border="0">');
   document.write('</a>');
}
