
<!--
var count = 1
function PreloadImages(image, width, height, ext)
{
  eval("a" + count + "=new Image(" + width + "," + height + ");" + "a" + count + ".src='/images/" + image + "_off." + ext + "';")
  count++
  eval("a" + count + "=new Image(" + width + "," + height + ");" + "a" + count + ".src='/images/" + image + "_on." + ext + "';")
  count++
}

function ChangeImage(img, image_src)
{ document.images[img].src = '/images/' + image_src }

function ExplorerFix()
{ for (a in document.links) document.links[a].onfocus = document.links[a].blur }

if (document.all) document.onmousedown = ExplorerFix;

PreloadImages('home_tab', 87, 26, 'gif')
PreloadImages('search_tab', 112, 26, 'gif')
PreloadImages('contact_tab', 82, 26, 'gif')
PreloadImages('news', 105, 18, 'gif')
PreloadImages('expresso_logic', 105, 18, 'gif')
PreloadImages('training', 105, 18, 'gif')
PreloadImages('solutions', 105, 18, 'gif')
PreloadImages('your_partners', 105, 18, 'gif')
//-->


