function random_content(){
var mycontent=new Array()
// mycontent[1]='<img src="/images/splash_1.jpg" width="343" height="240" border=0 alt="NAET Clinic of Ottawa">' //
mycontent[1]='<img src="images/home_splash_1.jpg" width="355" height="250" border=0 alt="SoftLogic, enabling business efficiency">'
mycontent[2]='<img src="images/home_splash_2.jpg" width="355" height="250" border=0 alt="SoftLogic, enabling business efficiency">'
mycontent[3]='<img src="images/home_splash_3.jpg" width="355" height="250" border=0 alt="SoftLogic, enabling business efficiency">'
var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
random_content()
