<!--
// gordy's rollover active box thingo script yahoo i did this 17/april/2001
// http://www.starbug.com.au

Ovrroll = new Array(1)
Ovrout = new Array(1)
Ovrroll = "#094162" // set colour for rollover here
Ovrout = "#073754" // set colour for rollout here


function mOvr(src,clrOver) {
	if (!src.contains(event.fromElement)) {
		src.style.cursor = 'hand'; // bring up the hand cursor thingo
		src.bgColor = clrOver;
	}
}
function mOut(src,clrIn) {
	if (!src.contains(event.toElement)) {
		src.style.cursor = 'default'; // bring up the default cursor thingo
		src.bgColor = clrIn;
	}
}
function mClk(src) {
	if(event.srcElement.tagName=='TD') {
		src.children.tags('A')[0].click(); // read the url address and make it active
	}
}
//-->
