function randOrd(){
return (Math.round(Math.random())-0.5); 
}

function rotatePics() {
pic1 = new Array('Aldershot','images/RichardWyeth.jpg','aldershot.php', 'http://www.towergatewilsons.co.uk/garrison-fm.aspx');
pic2 = new Array('Catterick','images/RafeParker.jpg','catterick.php', 'http://www.towergatewilsons.co.uk/garrison-fm.aspx');
pic3 = new Array('Colchester','images/LizMullen.jpg','colchester.php', 'http://www.towergatewilsons.co.uk/garrison-fm.aspx');
pic4 = new Array('Edinburgh','images/MarkMckenzie.jpg','edinburgh.php', 'http://www.towergatewilsons.co.uk/garrison-fm.aspx');
pic5 = new Array('Salisbury Plain','images/ChrisSturgess.jpg','salisbury-plain.php', 'http://www.towergatewilsons.co.uk/garrison-fm.aspx');

var pics = new Array(pic1,pic2,pic3,pic4,pic5);
var thePics = " ";

for (i=0;i<5;i++)
{
thePics = thePics + '<div class="profile"><div class="la"><a href="'+pics[i][3]+'" class="l" style="color:#fff;"><img src="assets/05.png">LISTEN</a></div><div class="profile_pic"><a href="'+pics[i][2]+'" style="cursor:hand;"><img src="'+pics[i][1]+'"></a></div><div class="profile_right"><a href="'+pics[i][2]+'" style="cursor:hand; color:#fff;">'+pics[i][0]+'</a></div></div>';
}
thePics = thePics + '<div class="profile"><div class="la"><a href="armynews.php" class="l" style="color:#fff;"><img src="assets/05.png">LISTEN</a></div><div class="profile_pic"><a href="armynews.php" style="cursor:hand;"><img src="images/arn2.jpg"></a></div><div class="profile_right"><a href="armyradionews.php" style="cursor:hand; color:#fff;">Army Radio News</div></a></div>';
document.getElementById("pics").innerHTML=thePics;
}

function displayPics() {

rotatePics();


}
