
<!-- adds class of active to selected navigation. -->
 $(function(){
   var path = location.pathname.substring(1);
   if ( path )
     $('#main_nav a[href$="' + path + '"]').attr('class', 'active');
 });
 
 <!-- open form - do you have a leak? -->
 
/*
function showMe (it, box) {
var vis = (box.checked) ? "block" : "none";
document.getElementById(it).style.display = vis;
}
function showMe2 (it) {
var vis = document.getElementById(it).style.display
if (vis == "block") { document.getElementById(it).style.display = "none"; }
else { document.getElementById(it).style.display = "block"; }
} 
*/

<!-- spacing after last ul in leak form -->
$("document").ready( function ()  {
$("#rfl li:last-child").css("margin-bottom","5px");
});

<!-- for copyright date -->
var d = new Date()

<!-- form help window -->
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
} 

<!-- for slideshow -->

$(document).ready(function() {
	$("#slideshow").css("overflow", "hidden");
	
	$("ul#slides").cycle({
		fx: 'turnDown',
		pause: 2,
		prev: '#prev',
		next: '#next',
		timeout: 10000
	});


$("#slideshow").hover(function() {
	$("ul#nav").fadeIn();
	},
		function() {
	$("ul#nav").fadeOut();
	});
});	

// RECAPTCHA THEME
var RecaptchaOptions = {
theme : 'white'
}; 
