$(document).ready(function(){
	// Hide "human" field. This field is used to catch entries by spambots.
	$('#human').hide();  

	// Adds the class "active" for secondary nav
	var path = location.pathname.substring(location.pathname.lastIndexOf("/")+1, location.pathname.length);
   
	if ( path.length > 1 ) {
		 $('#nav-secondary li a[@href$="' + path + '"]').attr('class', 'active');
		 $('#nav-secondary li li a[@href$="' + path + '"]').attr('class', 'active');
	 } else if ( path == "" ) {
		 $('#nav-secondary li a[@href$="index.php"]').attr('class', 'active');
		 $('#nav-secondary li li a[@href$="index.php"]').attr('class', 'active');
	 }
	 
	 if(window.Cufon !== undefined) {
		 Cufon.replace('#home h3 a, #home h3');
	 }
});