
<!--
// JavaScript Document

// these are the scripts that are called in the links.

var siteDoc = parent.frames[0].document
var DHTML = (siteDoc.getElementById || siteDoc.all || siteDoc.layers);

var panic_red = '#bd2910';
var panic_black = '#000000';


function selectLink( name )
{
	if (!DHTML) return;
	resetAll();
	var x = new getObj(name);
	x.style.color = panic_red;
}

function resetAll()
{
	if (!DHTML) return;
	var x = new getObj('welcome');
	x.style.color = panic_black;
	x.style.color = '';
	x = new getObj('about');
	x.style.color = panic_black;
	x.style.color = '';
	x = new getObj('contact');
	x.style.color = panic_black;
	x.style.color = '';
	x = new getObj('client');
	x.style.color = panic_black;
	x.style.color = '';
}

function getObj(name)
{
  if (siteDoc.getElementById)
  {
  	this.obj = siteDoc.getElementById(name);
	this.style = siteDoc.getElementById(name).style;
  }
  else if (siteDoc.all)
  {
	this.obj = siteDoc.all[name];
	this.style = siteDoc.all[name].style;
  }
  else if (siteDoc.layers)
  {
   	this.obj = siteDoc.layers[name];
   	this.style = siteDoc.layers[name];
  }
}
//-->