sfHover = function() {
	var li_Els = document.getElementById("tabs_container").getElementsByTagName("LI");
	for (var i=0; i<li_Els.length; i++) {
		li_Els[i].onmouseover=function() {
			this.className+=" over";
		}
		li_Els[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" over\\b"), "");
		}
	}
/*
	var input_Els = document.getElementById("search_form").getElementsByTagName("input");
	for (var i=0; i<input_Els.length; i++) {
		input_Els[i].onmouseover=function() {
			this.className+=" over";
		}
		input_Els[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" over\\b"), "");
		}
	}
*/
	var a_Els = document.getElementsByTagName("a");
	for (var i=0; i<a_Els.length; i++) {
		a_Els[i].onmouseover=function() {
			this.className+=" over";
		}
		a_Els[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" over\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
//--><!]]>// JavaScript Document

