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

reviewImages[0] = 'http://images.dvdtalk.com/covers/B004LWZW7O.jpg';
reviewInformation[0] = '&#34;In Time&#34; by Adam Tyner';
reviewLinks[0] = 'http://www.dvdtalk.com/reviews/read.php?ID=54474';
reviewImages[1] = 'http://images.dvdtalk.com/covers/B0063E00PC.jpg';
reviewInformation[1] = '&#34;A Star is Born (1937)&#34; by Stuart Galbraith IV';
reviewLinks[1] = 'http://www.dvdtalk.com/reviews/read.php?ID=53137';
reviewImages[2] = 'http://images.dvdtalk.com/covers/B00699G6AE.jpg';
reviewInformation[2] = '&#34;Human Centipede II: Full Sequence&#34; by Ian Jane';
reviewLinks[2] = 'http://www.dvdtalk.com/reviews/read.php?ID=53502';
reviewImages[3] = 'http://images.dvdtalk.com/covers/B006PGL7OQ.jpg';
reviewInformation[3] = '&#34;Take Shelter&#34; by Ryan Keefer';
reviewLinks[3] = 'http://www.dvdtalk.com/reviews/read.php?ID=53932';
reviewImages[4] = 'http://images.dvdtalk.com/covers/B006JIL0AG.jpg';
reviewInformation[4] = '&#34;Rebound&#34; by Ryan Keefer';
reviewLinks[4] = 'http://www.dvdtalk.com/reviews/read.php?ID=53616';
reviewImages[5] = 'http://images.dvdtalk.com/covers/B005W2BWLC.jpg';
reviewInformation[5] = '&#34;Fairy Tail: Part 3&#34; by Neil Lumbard';
reviewLinks[5] = 'http://www.dvdtalk.com/reviews/read.php?ID=52892';
reviewImages[6] = 'http://images.dvdtalk.com/covers/';
reviewInformation[6] = '&#34;Beavis & Butthead: Volume 4&#34; by Michael Zupan';
reviewLinks[6] = 'http://www.dvdtalk.com/reviews/read.php?ID=53409';
reviewImages[7] = 'http://images.dvdtalk.com/covers/B004YM6JUA.jpg';
reviewInformation[7] = '&#34;Weeds: Season Seven&#34; by Jason Bailey';
reviewLinks[7] = 'http://www.dvdtalk.com/reviews/read.php?ID=53532';
reviewImages[8] = 'http://images.dvdtalk.com/covers/B0069556RM.jpg';
reviewInformation[8] = '&#34;Sengoku Basara: Samurai Kings - Season 1&#34; by Neil Lumbard';
reviewLinks[8] = 'http://www.dvdtalk.com/reviews/read.php?ID=53341';
reviewImages[9] = 'http://images.dvdtalk.com/covers/B006OFN070.jpg';
reviewInformation[9] = '&#34;A Very Harold & Kumar 3D Christmas&#34; by William Harrison';
reviewLinks[9] = 'http://www.dvdtalk.com/reviews/read.php?ID=54459';
reviewImages[10] = 'http://images.dvdtalk.com/covers/B004LWZW7O.jpg';
reviewInformation[10] = '&#34;In Time&#34; by William Harrison';
reviewLinks[10] = 'http://www.dvdtalk.com/reviews/read.php?ID=53693';
reviewImages[11] = 'http://images.dvdtalk.com/covers/B0065N6K9Q.jpg';
reviewInformation[11] = '&#34;Notorious (1946)&#34; by Jamie S. Rich';
reviewLinks[11] = 'http://www.dvdtalk.com/reviews/read.php?ID=53425';
reviewImages[12] = 'http://images.dvdtalk.com/covers/B0065N6KNW.jpg';
reviewInformation[12] = '&#34;Spellbound (1945)&#34; by Christopher McQuain';
reviewLinks[12] = 'http://www.dvdtalk.com/reviews/read.php?ID=53550';
reviewImages[13] = 'http://images.dvdtalk.com/covers/B006C1S1IO.jpg';
reviewInformation[13] = '&#34;Yakuza Weapon&#34; by Ian Jane';
reviewLinks[13] = 'http://www.dvdtalk.com/reviews/read.php?ID=53429';
reviewImages[14] = 'http://images.dvdtalk.com/covers/ts1328496194.jpg';
reviewInformation[14] = '&#34;La Jetee/Sans Soleil: Criterion Collection&#34; by Jamie S. Rich';
reviewLinks[14] = 'http://www.dvdtalk.com/reviews/read.php?ID=53284';
reviewImages[15] = 'http://images.dvdtalk.com/covers/B006FSRSFQ.jpg';
reviewInformation[15] = '&#34;Annie Hall&#34; by Christopher McQuain';
reviewLinks[15] = 'http://www.dvdtalk.com/reviews/read.php?ID=53426';
reviewImages[16] = 'http://images.dvdtalk.com/covers/B005XN6OFO.jpg';
reviewInformation[16] = '&#34;Division III: Football&#180;s Finest&#34; by Ryan Keefer';
reviewLinks[16] = 'http://www.dvdtalk.com/reviews/read.php?ID=52938';
reviewImages[17] = 'http://images.dvdtalk.com/covers/B006CR2P7Q.jpg';
reviewInformation[17] = '&#34;CSI: Crime Scene Investigation - Grave Danger&#34; by Stuart Galbraith IV';
reviewLinks[17] = 'http://www.dvdtalk.com/reviews/read.php?ID=53412';
reviewImages[18] = 'http://images.dvdtalk.com/covers/B004LWZWC4.jpg';
reviewInformation[18] = '&#34;The Big Year&#34; by Ryan Keefer';
reviewLinks[18] = 'http://www.dvdtalk.com/reviews/read.php?ID=53692';
reviewImages[19] = 'http://images.dvdtalk.com/covers/B006VXG6XA.jpg';
reviewInformation[19] = '&#34;Kimi ni Todoke: From Me to You, Vol. 1 (Premium Edition)&#34; by Neil Lumbard';
reviewLinks[19] = 'http://www.dvdtalk.com/reviews/read.php?ID=54449';

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>');
}

