var allImages = new Array()
allImages[0] = 'images/img_help01.png'
allImages[1] = 'images/img_help02.png'
allImages[2] = 'images/img_help03.png'
allImages[3] = 'images/img_help04.png'

var j = 0

var p = allImages.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
  preBuffer[i] = new Image()
  preBuffer[i].src = allImages[i]
}

var randomImage = Math.round(Math.random()*(p-1));

document.write('<div id="sidebar">');
document.write('<h5>Make Contact</h5><div class="box">');
document.write('<p><img src="'+allImages[randomImage]+'" width="34" height="34" align="left" class="icon1">Got a question? Let us help you.</p><br>');
document.write('<p><img src="images/icon_phone.png" width="32" height="32" class="icon2"> <strong><a href="contact.html">Call us</a></strong></p>');
document.write('<p><img src="images/icon_email.png" width="32" height="32" class="icon2"> <strong><a href="contact.html">Email us</a></strong></p>');
document.write('</div><h5>Download</h5><div class="box">');
document.write('<p><img src="images/img_eduturnkey.png" width="138" height="35" border="0"></p>');
document.write('<p>iCELL &ndash; Your Partner In Education. 307KB PDF.</p>');
document.write('<p><img src="images/icon_bullet.gif"> <a href="downloads/iCELL_Edu-web.pdf">Click to download</a>.</p>');
document.write('</div></div><!-- End #sidebar -->');
