function mouseOver(){
	var vSrc = window.event.srcElement;
	if (vSrc.tagName == "A") {
	vSrc.style.color = "#00FFFF";
	window.event.cancelbubble == true;
	}
}
function mouseOut() {
	var vSrc = window.event.srcElement;
	if (vSrc.tagName == "A") {
	vSrc.style.color = "";
	window.event.cancelbubble == true;
	}
}
document.onmouseover = mouseOver;
document.onmouseout = mouseOut;
document.write('<body bgcolor="#2251BD" topmargin="0" leftmargin="0" link="#FFFFFF" vlink="#FFFFFF" alink="#FFFFFF" style="font-family: Tahoma; color: #FFFFFF">');
document.write('<table border="0" width="100%" cellspacing="0" cellpadding="3" bgcolor="#000080"><tr><td width="50%"><font size="2"><a href="http://www.caithness.org">Caithness Community Web Site</a></font></td><td width="50%" bgcolor="#000080"><p align="right"><font size="2"><a href="http://www.caithness.org/dialect/index.htm">Caithness Dialect</a></font></td></tr></table>');






