// JavaScript Document

function colorize()
{
document.buttons.btnitcop.src="images/itcc.gif";
document.buttons.btnitsupp.src="images/itsc.gif";
document.buttons.btnweb.src="images/webc.gif";
document.buttons.btnsimp.src="images/simpc.gif";
}

function itsupport()
{
colorize();
document.info.logoimage.src="images/itslogo.jpg";
document.buttons.btnitsupp.src="images/itsbw.gif";
document.getElementById('infotitle').innerHTML = "IT SUPPORT";
document.getElementById('information').innerHTML = "Information to follow.";
}

function websites()
{
colorize();
document.info.logoimage.src="images/weblogo.jpg";
document.buttons.btnweb.src="images/webbw.gif";
document.getElementById('infotitle').innerHTML = "WEB SITES";
document.getElementById('information').innerHTML = "Information to follow.";
}

function simpsol()
{
colorize();
document.info.logoimage.src="images/simplogo.jpg";
document.buttons.btnsimp.src="images/simpbw.gif";
document.getElementById('infotitle').innerHTML = "SIMPLE SOLUTIONS";
document.getElementById('information').innerHTML = "Information to follow.";
}

function itcop()
{
colorize();
document.info.logoimage.src="images/itclogo.jpg";
document.buttons.btnitcop.src="images/itcbw.gif";
document.getElementById('infotitle').innerHTML = "IT COP";
document.getElementById('information').innerHTML = "Information to follow.";
}