// JavaScript Document
<!--BEGIN SCRIPT FOR NAVIGATION BARS -->

<!--//--><![CDATA[//><!--
startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=startList;

//--><!]]>


function hidediv(){
//bloody nothing!!
$('.tabContent').hide();
$('.tabContent2').hide();
}
function showdiv(pass) {

	$('.tabContent').hide();
	$('.tabContent2').hide();
	$('.tabContent').css("background-color","#fff");
	//$('#tabscontent').fadeTo(0, 0.85);
	$('#tabscontent').hide();
	$('#tabscontent').fadeIn(500);
	$('#'+pass).fadeIn(500);
	//$('.content').height($('.body_lower2').height());
	
	//if ($('#'+pass).height()<$(".left_nav").height()){
	//$('#'+pass).height($('.left_nav').height()-20);
	//}
	
sIFR.replace(futura, {
  selector: 'h3',css: '.sIFR-root { color: #333333; font-size:18px;}',wmode: 'transparent'
});
sIFR.replace(futura, {
  selector: 'h2',css: '.sIFR-root { color: #666666; font-size:22px;}',wmode: 'transparent'
});
}

function setVisibility(id, visibility) {
	document.getElementById(id).style.display = visibility;
}