// Auto News Script
var randText = new Array(); 
        
randText[0] = "Accent Communications Announces Name Change - One of the Illawarra’s most successful companies has a new name, new look and new focus..." + "<a href='news/item1.html' class='indexLinks'>" + "read more" + "</a>"; 
randText[1] = "Accent Business Technology was recently recognised by Navman Wireless Australia at the NSW dealer conference held at the Rydges..." + "<a href='news/item2.html' class='indexLinks'>" + "read more" + "</a>"; 
randText[2] = "Accent Business Technology Attains Gold Certified Partner Status in Microsoft Partner Program for the third consecutive Year..." + "<a href='news/item3.html' class='indexLinks'>" + "read more" + "</a>"; 

/*randText[3] = "random text 4";*/ 

function displayRandomText() { 

var randNum = Math.floor(Math.random()*randText.length); 
document.write(randText[randNum]); } 
