var images = new Array() 

 images[0] = '_banner_con'
 images[1] = '_banner_acc'
 images[2] = '_banner_par'
 images[3] = '_banner_tun'
 images[4] = '_banner_hgt'
 
var titles = new Array()

 titles[0] = 'Get Connected with innovative IT Services and Solutions'
 titles[1] = 'Accelerate your Business with innovative IT Services and Solutions'
 titles[2] = 'Get on Par with innovative IT Services and Solutions'
 titles[3] = 'Get in Tune with innovative IT Services and Solutions'
 titles[4] = 'Reach Greater Heights with innovative IT Services and Solutions'

var x=images.length;
var y=0;
var preLoad=new Array()
for (i=0; i<x; i++){
   preLoad[i] = new Image()
   preLoad[i].src = images[i]
}

var mainImage = Math.round(Math.random()*(x-1));
function getMainImage(){
	document.write('<img src="images/'+images[mainImage]+'_sm.jpg" width="930" height="280" title="'+titles[mainImage]+'"  >');

}
