/*-----------------------------------------------
'	Company: RUHE (www.ruhe.com.au)
'	Copyright © 2006, All rights reserved.
'	Date Created: August 2006
'
'	Last Modified Date: 07th August, 2006
'	Last Modified By: Benjamin -> benjamin@ruhe.com.au
'
'	DO NOT MODIFY THIS DOCUMENT WITHOUT
'	NOTIFYING THE AUTHOR FIRST
'
------------------------------------------------*/


	sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("dd");	
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
	externaliseLinks();

}
if (window.attachEvent) window.attachEvent("onload", sfHover);