function rantitle() {
var rantitle = [
"Legend Zero - We love us some WTFLOLBBQ!!",  
"Legend Zero - Follow us in Twitter @Legend_Zero.",  
"Legend Zero - Welcome, my friends, to world domination!",
"Legend Zero - Senor Gray is not pleased.",
"Legend Zero - On your computer, infecting your mind.",
"Legend Zero - We're the website your parents warned you about.",
"Legend Zero - Polka dancing with midgets since 2003!",
"Legend Zero - GET OUT OF MY CLOSET!",
"Legend Zero - The web is only the begginning.",
"Legend Zero - Alcholic wizards welcome."
];  
ranNumber = parseInt(rantitle.length * Math.random());  
return rantitle[ranNumber];  
}

function ranvideo() {
var ranvideo = [
'<img alt="Beating the Game, New Super Mario Bros." height="122" src="http://www.legendzero.com/images/videos/BTG-NSMB1.png" width="220" style="float: center">',  
'<img alt="60SR - Cameras" height="122" src="http://www.legendzero.com/images/videos/60sr-cameras.png" width="220" style="float: center">', 
'<img alt="60SR - New Game" height="122" src="http://www.legendzero.com/images/videos/60sr-newgame.png" width="220" style="float: center">'
];  
ranNumber2 = parseInt(ranvideo.length * Math.random());  
return ranvideo[ranNumber2];  
}

function ranstore() {
var ranstore = [
'<img alt="Beating the Game, New Super Mario Bros." height="122" src="http://www.legendzero.com/images/videos/BTG-NSMB1.png" width="220" style="float: center">',  
'<img alt="60SR - Cameras" height="122" src="http://www.legendzero.com/images/videos/60sr-cameras.png" width="220" style="float: center">', 
'<img alt="60SR - New Game" height="122" src="http://www.legendzero.com/images/videos/60sr-newgame.png" width="220" style="float: center">'
];  
ranNumber3 = parseInt(ranstore.length * Math.random());  
return ranstore[ranNumber3];  
}