<!--
function random_text()
{};
var random_text = new random_text();
// Set the number of text strings to zero to start
var number = 0;
// Incremental list of all possible Text
random_text[number++] = "<img src='http://www.nedyken.com/images/movies/rachelzevita_smallscreen.jpg'  style='float:right; margin-right: 100px;;' class='movie_screenshot'/><br><br><br><b><font size=3>Random Video:</font></b><br> <a href=http://www.nedyken.com/movies/rachelzevita.html>The Rachel Zevita Tribute Video!!!</a>"
random_text[number++] = "<img src='http://www.nedyken.com/images/movies/danceswithhats_smallscreen.jpg'  style='float:right; margin-right: 100px;;' class='movie_screenshot'/><br><br><br><b><font size=3>Random Video:</font></b><br> <a href=http://www.nedyken.com/movies/danceswithhats.html>Dances With Hats</a>"
random_text[number++] = "<img src='http://www.nedyken.com/images/movies/deathofbartley_smallscreen.jpg'  style='float:right; margin-right: 100px;;' class='movie_screenshot'/><br><br><br><b><font size=3>Random Video:</font></b><br> <a href=http://www.nedyken.com/movies/deathofbartley.html>The Death of Michael Bartley</a>"
random_text[number++] = "<img src='http://www.nedyken.com/images/movies/ghostofwoodchipper_smallscreen.jpg'  style='float:right; margin-right: 100px;;' class='movie_screenshot'/><br><br><br><b><font size=3>Random Video:</font></b><br> <a href=http://www.nedyken.com/movies/ghostofwoodchipper.html>The Ghost Of The Woodchipper</a>"
random_text[number++] = "<img src='http://www.nedyken.com/images/movies/goldenbrown_smallscreen.jpg'  style='float:right; margin-right: 100px;;' class='movie_screenshot'/><br><br><br><b><font size=3>Random Video:</font></b><br> <a href=http://www.nedyken.com/movies/goldenbrown.html>Golden Brown</a>"
random_text[number++] = "<img src='http://www.nedyken.com/images/movies/karavsdave_smallscreen.jpg'  style='float:right; margin-right: 100px;;' class='movie_screenshot'/><br><br><br><b><font size=3>Random Video:</font></b><br> <a href=http://www.nedyken.com/movies/karavsdave.html>Kara Vs. Dave</a>"
random_text[number++] = "<img src='http://www.nedyken.com/images/movies/truthinheat_smallscreen.jpg'  style='float:right; margin-right: 100px;;' class='movie_screenshot'/><br><br><br><b><font size=3>Random Video:</font></b><br> <a href=http://www.nedyken.com/movies/truthinheat.html>Truth in Heat</a>"
random_text[number++] = "<img src='http://www.nedyken.com/images/movies/mjthug_smallscreen.jpg'  style='float:right; margin-right: 100px;;' class='movie_screenshot'/><br><br><br><b><font size=3>Random Video:</font></b><br> <a href=http://www.nedyken.com/movies/mjthug.html>MJ Thug:  The Movie</a>"
random_text[number++] = "<img src='http://www.nedyken.com/images/movies/astaire_smallscreen.jpg'  style='float:right; margin-right: 100px;;'  class='movie_screenshot'/><br><br><br><b><font size=3>Random Video:</font></b><br> <a href=http://www.nedyken.com/movies/astaire.html>Fred Astaire Brings Sexyback</a>"
random_text[number++] = "<img src='http://www.nedyken.com/images/movies/narutodanny_smallscreen.jpg'  style='float:right; margin-right: 100px;;'  class='movie_screenshot'/><br><br><br><b><font size=3>Random Video:</font></b><br> <a href=http://www.nedyken.com/movies/naruto-danny/>Naruto Danny</a>"

// Create a random number with limits based on the number
// of possible random text strings
var random_number = Math.floor(Math.random() * number);
// Write out the random text to the browser
document.write(random_text[random_number]);
