// JavaScript Document

window.onload = function() {

        var randomnumber = Math.floor(Math.random() * 6)
        var ArrayText = new Array();
        ArrayText[0] = "<div style='width:530px;'><div style='float:left; text-align:left;'>&nbsp;<a href='#' class='testlink'>'I found success on Blow A Kiss.'</a><strong style='margin-left:10px;'>&nbsp;<a href='/struts/1blkssuccessstories.html' class='testlink'>More Success Stories >> </a></strong></div></div></div>";        
       
	    ArrayText[1] = "<div style='width:530px;'><div style='float:left;width:530px; text-align:left;'>&nbsp;<a href='#' class='testlink'>'Thanks to bak for introducing me to my girlfriend'</a> - <strong>Kev</strong><strong style='margin-left:20px;'>&nbsp;<a href='/struts/1blkssuccessstories.html' class='testlink'>More Success Stories >> </a></strong></div></div></div>";        
		
        ArrayText[2] =  "<div style='width:530px;'><div style='float:left; text-align:left;'>&nbsp;<a href='#' class='testlink'>'Only been on the site a few weeks and already ive met someone which looks promising.'</a> - <strong>Jase</strong><strong style='margin-left:20px;'>&nbsp;<a href='/struts/1blkssuccessstories.html' class='testlink'>More Success Stories >> </a></strong></div></div></div>";        
		
        ArrayText[3] = "<div style='width:530px;'><div style='float:left; text-align:left;'>&nbsp;<a href='#' class='testlink'>'So shocked that this internet really works, only been on the site a few weeks & have already met someone.'</a> - <strong>Sally</strong>&nbsp;<a href='/struts/1blkssuccessstories.html' class='testlink'>More Success Stories >> </a></strong></div></div></div>";        
		
        ArrayText[4] = "<div style='width:530px;'><div style='float:left; text-align:left;'>&nbsp;<a href='#' class='testlink'>'I'm now married to the perfect guy thanks to blowakiss.com' </a> - <strong>Mona</strong> <strong style='margin-left:20px;'>&nbsp;<a href='/struts/1blkssuccessstories.html' class='testlink'>More Success Stories >> </a></strong></div></div></div>";        
		
        ArrayText[5] = "<div style='width:530px;'><div style='float:left; text-align:left;'>&nbsp;<a href='#' class='testlink'>'Would definitely recommend blowakiss.com. I found my match almost straight away.'</a> - <strong>Lee</strong><strong style='margin-left:30px;'>&nbsp;<a href='/struts/1blkssuccessstories.html' class='testlink'>More Success Stories >> </a></strong></div></div></div>";        
		
        document.getElementById("divText").innerHTML = ArrayText[randomnumber];
        document.getElementById("imgText").src = "images/" + randomnumber + ".jpg";
        
    }

