var pathname=window.location.pathname;var navCurrentSelection=pathname.slice(pathname.lastIndexOf("/")+1).replace(/.html/i,"");navCurrentSelection=navCurrentSelection=="index"||navCurrentSelection===""?"navHome":"nav"+navCurrentSelection[0].toUpperCase()+navCurrentSelection.substring(1);var currentSection;var option={fadeSpeed:500,fadeEasing:"swing",autoHeightSpeed:500};$(function(){initializeDOM();if(typeof initialize=="function"){initialize()}});function initializeDOM(){var c=window.location.hash.substring(1);var b=!!document.getElementById("content")?document.getElementById("content").children:[];for(var a=0;a<b.length;a++){b[a].style.display="none"}if(!!c&&!!document.getElementById(c)){currentSection=c}else{if(!!document.getElementById("overview")){currentSection="overview"}else{if(!!b.length){currentSection=b[0].id}}}switchSection(currentSection)}function switchSection(c){var a=$("#main");var b=$("#content",a);$("#"+currentSection).fadeOut(option.fadeSpeed,option.fadeEasing,function(){b.animate({height:$("#"+c).outerHeight()},option.autoHeightSpeed,function(){$("#"+c).fadeIn(option.fadeSpeed,option.fadeEasing);currentSection=c})});return false}function hoverOnNav(a){document.getElementById("sub"+navCurrentSelection).style.display="none";document.getElementById(a.slice(3)).className="selected";document.getElementById(a).style.display="block"}function hoverOffNav(a){document.getElementById(a.slice(3)).className="";document.getElementById(a).style.display="none";document.getElementById("sub"+navCurrentSelection).style.display="block";document.getElementById(navCurrentSelection).className="active"};
