// JavaScript Document

var arrIMG = "http://gal-axy.com/images/golive00.gif,http://gal-axy.com/images/golive01.gif,http://gal-axy.com/images/golive02.gif,http://gal-axy.com/images/golive04.gif,http://gal-axy.com/images/golive05.gif,http://gal-axy.com/images/golive06.gif,http://gal-axy.com/images/golive07.gif,http://gal-axy.com/images/golive08.gif,http://gal-axy.com/images/golive09.gif,http://gal-axy.com/images/golive11.gif,http://gal-axy.com/images/golive12.gif,http://gal-axy.com/images/golive13.gif";

arrIMG = arrIMG.split(",");
arrCnt = arrIMG.length;retCnt = Math.floor(Math.random()*arrCnt);
var output = "<img src=" + arrIMG[retCnt] + " width='145' height='188' alt='We Need Funk !!' />";
document.write(output);