// JavaScript Document
  
var links = new Array ();
links[0]="playmovie2.php?partid=580";
links[1]="playmovie2.php?partid=79";
links[2]="playmovie2.php?partid=602";
links[3]="playmovie2.php?partid=252";
links[4]="playmovie2.php?partid=598";
links[5]="http://www.youtube.com/watch?v=7oK4bkbyRiE";
links[6]="playmovie2.php?partid=593";
links[7]="playmovie2.php?partid=595";
links[8]="playmovie2.php?partid=287";
links[9]="playmovie2.php?partid=252";
links[10]="playmovie2.php?partid=597";
links[11]="playmovie2.php?partid=163";
links[12]="playmovie2.php?partid=284";
 
var images = new Array ();
images[0]="feature/bigfighttmb.jpg";
images[1]="feature/fsgdrive.jpg";
images[2]="feature/gogglef.jpg";
images[3]="feature/snguns.jpg";
images[4]="feature/poopeehandf.jpg";
images[5]="feature/wrestlef.jpg";
images[6]="feature/sgsanjurof.jpg";
images[7]="feature/barnaclef.jpg";
images[8]="feature/bigbrof.jpg";
images[9]="feature/realmef.jpg";
images[10]="feature/poopeewormf.jpg";
images[11]="feature/poopee24f.jpg";
images[12]="feature/kkkf.jpg";
  
var titles  = new Array ();
titles[0]="The Great Big Fight";
titles[1]="Scottish Girl Learns to Drive";
titles[2]="Oogling with Goggles";
titles[3]="When Guns Go Bananas";
titles[4]="Handful of Therapy";
titles[5]="Arm Wrestling";
titles[6]="Scottish San Juro";
titles[7]="Barnacle Bill";
titles[8]="Big Brother";
titles[9]="Facebook Friends";
titles[10]="The Dead Bookworm";
titles[11]="Audition for 24";
titles[12]="KKK Dilemma";
 
var randomdiv = document.getElementById("randomfeat");
var randomdiv1 = document.getElementById("randomfeat1");
var randomdiv2 = document.getElementById("randomfeat2");


var randnum = Math.floor(Math.random()*12);
var MyImage  = images.splice(randnum, 1);
var MyLinks =links.splice(randnum, 1);
var MyTitles  = titles.splice(randnum, 1);

var randnum1 = Math.floor(Math.random()*11);
var MyImage1 = images.splice(randnum1, 1);
var MyLinks1 = links.splice(randnum1, 1);
var MyTitles1 = titles.splice(randnum1, 1);

var randnum2 = Math.floor(Math.random()*10);
var MyImage2 = images.splice(randnum1, 1);
var MyLinks2 = links.splice(randnum1, 1);
var MyTitles2 = titles.splice(randnum1, 1);


randomdiv.innerHTML = '<div class="featurebox" style="width:200px;">'+MyTitles+' <br><a href="'+MyLinks+'" title="Play Featured Video: " class="feature"> <img src="'+MyImage+'" alt="'+MyTitles+'" width="130" height="87" border="0" class="featimg"><br><img src="feature/playfeat.jpg" alt="" width="50" height="20" border="0"></a><br></div>';
  
randomdiv1.innerHTML = '<div class="featurebox" style="width:200px;">'+MyTitles1+' <br><a href="'+MyLinks1+'" title="Play Featured Video: " class="feature"> <img src="'+MyImage1+'" alt="'+MyTitles1+'" width="130" height="87" border="0" class="featimg"><br><img src="feature/playfeat.jpg" alt="" width="50" height="20" border="0"></a><br></div>';

randomdiv2.innerHTML = '<div class="featurebox" style="width:200px;">'+MyTitles2+' <br><a href="'+MyLinks2+'" title="Play Featured Video: " class="feature"> <img src="'+MyImage2+'" alt="'+MyTitles2+'" width="130" height="87" border="0" class="featimg"><br><img src="feature/playfeat.jpg" alt="" width="50" height="20" border="0"></a><br></div>';
