
		var sPath = window.location.pathname;
		//var sPage = sPath.substring(sPath.lastIndexOf('\\') + 1);
		var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);

$(document).ready(function(){ 
		
	//$('#topnav ul li:first').addClass('first');
	//$('a[rel*=facebox]').facebox();
	
	$("#testimonials blockquote:odd").addClass("odd");
	$("#news ul li:odd").addClass("odd");

	$("#topnav ul li a[href='/"+sPage+"']").parents("li").addClass("active");
	$("#topnav ul li a[href='/include/"+sPage+"']").parents("li").addClass("active");
	
	$('#stats').accordion(); 
	
	$('#topnav ul li').hover(
		function() { 
			$('ul.subnav:not(li.active ul.subnav)', this).css('z-index', '99'); 
		},
		function() { 
			$('ul.subnav:not(li.active ul.subnav)', this).css('z-index', '20'); 
		});
	
	}); 