//picture array
pictureList = new Array();
pictureList[0] = "<img src='/images/images/randombanner/banner1.jpg' alt='Forward Looking IT security'  width='800' height='145' id='banner' />";
pictureList[1] = "<img src='/images/images/randombanner/banner5.jpg' alt='Espions Pioneering IT Security research keeps us ahead of new and emerging threats' width='800' height='145' id='banner' />";
pictureList[2] = "<img src='/images/images/randombanner/banner3.jpg' alt='With a a network of partners and best-of-breed technologies Espion can guarantee the security of your business' width='800' height='145' id='banner' />";
pictureList[3] = "<img src='/images/images/randombanner/banner6.jpg' alt='Forensic IT analysis can successfully resolve your security and HR issues' width='800' height='145' id='banner' />";
pictureList[4] = "<img src='/images/images/randombanner/banner2.jpg' alt='Educating your personnel in IT security is your best defence' width='800' height='145' id='banner' />";
pictureList[5] = "<img src='/images/images/randombanner/banner4.jpg' alt='Espion - a forward looking IT products and  services company' width='800' height='145' id='banner' />";
pictureList[6] = "<img src='/images/images/randombanner/banner7.jpg' alt='Trust Espion to recommend the best security solutions for your business' width='800' height='145' id='banner' />";


//randomization
var now = new Date();
var secs = now.getSeconds();
var raw_random_number = Math.random(secs);
var random_number = Math.round(raw_random_number * (pictureList.length));
if (random_number == pictureList.length){random_number = 0}
//set picture
var picture = pictureList[random_number];
